From b2b94be3ca6629ce7d20b84d5b512b619bf7c806 Mon Sep 17 00:00:00 2001 From: Thomas Whitton Date: Sat, 17 Nov 2012 11:57:49 +0000 Subject: [PATCH] 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 --- folly/test/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.34.1