From: Peter Griess Date: Fri, 4 Oct 2013 23:48:25 +0000 (-0500) Subject: Link spooky hash tests missing libfollybenchmark.a. X-Git-Tag: v0.22.0~846 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ec07828f55565e31e0d61ff132c992efb94f9434;p=folly.git 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 --- 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)