From 73f2085759f2dc872bf23f90d8bd354445433c01 Mon Sep 17 00:00:00 2001 From: Sven Over Date: Sun, 14 Aug 2016 12:34:11 -0700 Subject: [PATCH] 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 --- folly/test/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.34.1