From: Sven Over Date: Sun, 14 Aug 2016 19:34:11 +0000 (-0700) Subject: add forgotten apply_tuple_test to Makefile.am X-Git-Tag: v2016.08.15.00 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=73f2085759f2dc872bf23f90d8bd354445433c01;p=folly.git add forgotten apply_tuple_test to Makefile.am Summary: ApplyTupleTest.cpp was never added to Makefile.am. This commit fixes that. Reviewed By: yfeldblum Differential Revision: D3715213 fbshipit-source-id: e1e914438d44affb6fe683614506338c3a3355c6 --- diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 1427a354..99d2e3bb 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -293,4 +293,8 @@ mallctl_helper_test_SOURCES = MallctlHelperTest.cpp mallctl_helper_test_LDADD = libfollytestmain.la TESTS += mallctl_helper_test +apply_tuple_test_SOURCES = ApplyTupleTest.cpp +apply_tuple_test_LDADD = libfollytestmain.la +TESTS += apply_tuple_test + check_PROGRAMS += $(TESTS)