X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2Ftest%2FMakefile.am;h=1399315f2aa7fd2a8a86e431b50665414de9b104;hp=9d983a3d692893fb37dae73834e9577c5d8d4215;hb=14d85244f8b72912c44ff43ccdd5e55c0b84c9e2;hpb=04574f427983543e0bcca330a781efb950487559 diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 9d983a3d..1399315f 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -96,6 +96,9 @@ TESTS += fbstring_test_using_jemalloc thread_cached_int_test_SOURCES = ThreadCachedIntTest.cpp thread_cached_int_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la +thread_id_test_SOURCES = ThreadIdTest.cpp +thread_id_test_LDADD = libfollytestmain.la + thread_local_test_SOURCES = ThreadLocalTest.cpp thread_local_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la thread_local_test_LDFLAGS = -ldl @@ -262,6 +265,7 @@ unit_test_LDADD = libfollytestmain.la TESTS += unit_test futures_test_SOURCES = \ + ../futures/test/CallbackLifetimeTest.cpp \ ../futures/test/CollectTest.cpp \ ../futures/test/ContextTest.cpp \ ../futures/test/CoreTest.cpp \ @@ -280,6 +284,7 @@ futures_test_SOURCES = \ ../futures/test/RetryingTest.cpp \ ../futures/test/SelfDestructTest.cpp \ ../futures/test/SharedPromiseTest.cpp \ + ../futures/test/TestExecutorTest.cpp \ ../futures/test/ThenCompileTest.cpp \ ../futures/test/ThenTest.cpp \ ../futures/test/TimekeeperTest.cpp \ @@ -301,6 +306,11 @@ function_test_SOURCES = \ function_test_LDADD = libfollytestmain.la TESTS += function_test +functional_test_SOURCES = \ + FunctionalTest.cpp +functional_test_LDADD = libfollytestmain.la +TESTS += functional_test + ssl_test_SOURCES = \ ../ssl/test/OpenSSLHashTest.cpp ssl_test_LDADD = libfollytestmain.la -lcrypto @@ -326,4 +336,8 @@ utility_test_SOURCES = UtilityTest.cpp utility_test_LDADD = libfollytestmain.la TESTS += utility_test +iterator_test_SOURCES = IteratorTest.cpp +iterator_test_LDADD = libfollytestmain.la +TESTS += iterator_test + check_PROGRAMS += $(TESTS)