Commit b2b94be3 authored by Thomas Whitton's avatar Thomas Whitton Committed by Jordan DeLong

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
parent e5baaa96
......@@ -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)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment