From: Thomas Whitton Date: Sat, 17 Nov 2012 11:57:49 +0000 (+0000) Subject: Fixed mistake with Makefile.am for spooky tests. X-Git-Tag: v0.22.0~1101 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b2b94be3ca6629ce7d20b84d5b512b619bf7c806;p=folly.git Fixed mistake with Makefile.am for spooky tests. Summary: Tests not compiling due to a copy and paste error in Makefile.am. Test Plan: . Reviewed By: tudorb@fb.com FB internal diff: D660138 --- diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 54d19726..9e147d62 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -173,12 +173,12 @@ cpuid_test_SOURCES = CpuIdTest.cpp cpuid_test_LDADD = libgtestmain.la $(top_builddir)/libfolly.la TESTS += cpuid_test -spooky_hash_test_SOURCES = SpookyHashV1Test.cpp -spooky_hash_test_LDADD = -lrt $(top_builddir)/libfolly.la +spooky_hash_v1_test_SOURCES = SpookyHashV1Test.cpp +spooky_hash_v1_test_LDADD = -lrt $(top_builddir)/libfolly.la TESTS += spooky_hash_v1_test -spooky_hash_test_SOURCES = SpookyHashV2Test.cpp -spooky_hash_test_LDADD = -lrt $(top_builddir)/libfolly.la +spooky_hash_v2_test_SOURCES = SpookyHashV2Test.cpp +spooky_hash_v2_test_LDADD = -lrt $(top_builddir)/libfolly.la TESTS += spooky_hash_v2_test check_PROGRAMS= $(TESTS)