Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mistake with Makefile.am for spooky tests. #20

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions folly/test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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)