From 55c9d0bdae2f6f77233b3f95809c781e470eccd6 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Tue, 14 Jun 2016 16:47:40 -0700 Subject: [PATCH] Add conv_benchmark target to Makefile.am Summary: It's useful to be able to build & run the benchmark. Differential Revision: D3433731 fbshipit-source-id: c37bd5be3da0f89d4792747857d2e7548aea08ba --- folly/test/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 15d25e33..987db2ee 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -151,6 +151,10 @@ concurrent_skiplist_benchmark_SOURCES = ConcurrentSkipListBenchmark.cpp concurrent_skiplist_benchmark_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la check_PROGRAMS += concurrent_skiplist_benchmark +conv_benchmark_SOURCES = ConvBenchmark.cpp +conv_benchmark_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la +check_PROGRAMS += conv_benchmark + histogram_test_SOURCES = HistogramTest.cpp histogram_test_LDADD = libfollytestmain.la TESTS += histogram_test -- 2.34.1