Summary:
SpookyHashTest now needs libgtestmain to be linked
(https://phabricator.fb.com/
D1775555).
https://ci-builds.fb.com/job/folly/1570/console
Test Plan:
Don't have Ubuntu setup, but this should fix it. Will kick off jenkins
build.
Reviewed By: andrewjcg@fb.com
Subscribers: folly-diffs@
FB internal diff:
D1779604
Signature: t1:
1779604:
1421174608:
de865529d728e943288b52c0d63ebb712eda094f
Blame Revision:
D1775555
TESTS += cpuid_test
spooky_hash_v1_test_SOURCES = SpookyHashV1Test.cpp
-spooky_hash_v1_test_LDADD = $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la
+spooky_hash_v1_test_LDADD = libgtestmain.la $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la
TESTS += spooky_hash_v1_test
spooky_hash_v2_test_SOURCES = SpookyHashV2Test.cpp
-spooky_hash_v2_test_LDADD = $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la
+spooky_hash_v2_test_LDADD = libgtestmain.la $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la
TESTS += spooky_hash_v2_test
check_PROGRAMS += $(TESTS)