From ec07828f55565e31e0d61ff132c992efb94f9434 Mon Sep 17 00:00:00 2001 From: Peter Griess Date: Fri, 4 Oct 2013 18:48:25 -0500 Subject: [PATCH] Link spooky hash tests missing libfollybenchmark.a. Summary: - This test uses the benchmarking library, which it wasn't linking; fix. Test Plan: - fbconfig -r folly && fbmake runtests - ./configure && make check on Ubuntu/FC/Mac Reviewed By: delong.j@fb.com FB internal diff: D998510 --- folly/test/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 65cab8a5..3680960e 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -177,11 +177,11 @@ cpuid_test_LDADD = libgtestmain.la $(top_builddir)/libfolly.la TESTS += cpuid_test spooky_hash_v1_test_SOURCES = SpookyHashV1Test.cpp -spooky_hash_v1_test_LDADD = -lrt $(top_builddir)/libfolly.la +spooky_hash_v1_test_LDADD = -lrt $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la TESTS += spooky_hash_v1_test spooky_hash_v2_test_SOURCES = SpookyHashV2Test.cpp -spooky_hash_v2_test_LDADD = -lrt $(top_builddir)/libfolly.la +spooky_hash_v2_test_LDADD = -lrt $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la TESTS += spooky_hash_v2_test check_PROGRAMS= $(TESTS) -- 2.34.1