Fixed mistake with Makefile.am for spooky tests.
authorThomas Whitton <mail@thomaswhitton.com>
Sat, 17 Nov 2012 11:57:49 +0000 (11:57 +0000)
committerJordan DeLong <jdelong@fb.com>
Sat, 19 Jan 2013 00:37:19 +0000 (16:37 -0800)
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

index 54d19726bdc2b13a7f98c5c55ba80002f8968959..9e147d62d3b7229c2fe3cc7f33f2b8fe5524baeb 100644 (file)
@@ -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)