summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Kryczka <andrewkr@fb.com>2017-04-26 14:18:58 -0700
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2017-04-26 14:47:23 -0700
commitf6a27d0bce465cabff8c355932004db04077296b (patch)
tree1d5593e9cb3254dc88a40b63315cfd0a745bd875 /Makefile
parent7eddecce125af3e4ff1fd55d66e5760cb12b6bb7 (diff)
Extract statistics tests into separate file
Summary: I'm going to add more DB tests for statistics as currently we have very few. I started a file dedicated to this purpose and moved the existing stats-specific tests there. Closes https://github.com/facebook/rocksdb/pull/2211 Differential Revision: D4951558 Pulled By: ajkr fbshipit-source-id: 05d11c35079c40ecabdfd2cf5556ccb761f694a4
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 74bef9900..989d1a452 100644
--- a/Makefile
+++ b/Makefile
@@ -358,6 +358,7 @@ TESTS = \
db_io_failure_test \
db_properties_test \
db_table_properties_test \
+ db_statistics_test \
autovector_test \
cleanable_test \
column_family_test \
@@ -1054,6 +1055,9 @@ db_range_del_test: db/db_range_del_test.o db/db_test_util.o $(LIBOBJECTS) $(TEST
db_sst_test: db/db_sst_test.o db/db_test_util.o $(LIBOBJECTS) $(TESTHARNESS)
$(AM_LINK)
+db_statistics_test: db/db_statistics_test.o db/db_test_util.o $(LIBOBJECTS) $(TESTHARNESS)
+ $(AM_LINK)
+
external_sst_file_basic_test: db/external_sst_file_basic_test.o db/db_test_util.o $(LIBOBJECTS) $(TESTHARNESS)
$(AM_LINK)