From: Ben Hamilton Date: Fri, 27 May 2016 23:12:47 +0000 (-0700) Subject: Fix open source `make check` build broken by `ThreadedExecutorTest.cpp` moving to... X-Git-Tag: 2016.07.26~193 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ca729c2e59c57415e5a8e1b69bb82060f40998b2;p=folly.git Fix open source `make check` build broken by `ThreadedExecutorTest.cpp` moving to `wangle` Summary: The Folly `make check` build is broken with Clang on OS X. This diff fixes the following break in `make check`: make[3]: *** No rule to make target `../futures/test/ThreadedExecutorTest.cpp', needed by `../futures/test/ThreadedExecutorTest.o'. Stop. The problem is a reference to a file which was moved to `wangle` in D3286988. Reviewed By: simpkins Differential Revision: D3361287 fbshipit-source-id: a9ae794374982b4accf806bd9608988430c75cfd --- diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 4d000a9a..15d25e33 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -228,7 +228,6 @@ futures_test_SOURCES = \ ../futures/test/ContextTest.cpp \ ../futures/test/ConversionTest.cpp \ ../futures/test/CoreTest.cpp \ - ../futures/test/ThreadedExecutorTest.cpp \ ../futures/test/EnsureTest.cpp \ ../futures/test/ExecutorTest.cpp \ ../futures/test/FSMTest.cpp \