From 44df8f5610adc2ab83dd1af966568aa1a1414cd2 Mon Sep 17 00:00:00 2001 From: James Sedgwick Date: Sun, 22 Oct 2017 13:18:56 -0700 Subject: [PATCH] move futures/test/ExecutorTest.cpp to executors/ Summary: also gotta split it up/rename it, that's coming later Reviewed By: yfeldblum Differential Revision: D6121525 fbshipit-source-id: 9c6dbabd47323d94657508a0f75a0c6e7f988ace --- CMakeLists.txt | 4 ++-- folly/{futures => executors}/test/ExecutorTest.cpp | 0 folly/test/Makefile.am | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) rename folly/{futures => executors}/test/ExecutorTest.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d9237e9..d3b14ea6 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -300,9 +300,10 @@ if (BUILD_TESTS) DIRECTORY concurrency/test/ TEST cache_locality_test SOURCES CacheLocalityTest.cpp - DIRECTORY executors/test/ + DIRECTORY executors/test/ TEST async_helpers_test SOURCES AsyncTest.cpp TEST codel_test SOURCES CodelTest.cpp + TEST executor_test SOURCES ExecutorTest.cpp TEST fiber_io_executor_test SOURCES FiberIOExecutorTest.cpp TEST global_executor_test SOURCES GlobalExecutorTest.cpp TEST serial_executor_test SOURCES SerialExecutorTest.cpp @@ -371,7 +372,6 @@ if (BUILD_TESTS) TEST context_test SOURCES ContextTest.cpp TEST core_test SOURCES CoreTest.cpp TEST ensure_test SOURCES EnsureTest.cpp - TEST executor_test SOURCES ExecutorTest.cpp TEST fsm_test SOURCES FSMTest.cpp TEST filter_test SOURCES FilterTest.cpp TEST future_splitter_test SOURCES FutureSplitterTest.cpp diff --git a/folly/futures/test/ExecutorTest.cpp b/folly/executors/test/ExecutorTest.cpp similarity index 100% rename from folly/futures/test/ExecutorTest.cpp rename to folly/executors/test/ExecutorTest.cpp diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 31e8b74b..e140d61f 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -283,7 +283,6 @@ futures_test_SOURCES = \ ../futures/test/ConversionOperatorTest.cpp \ ../futures/test/CoreTest.cpp \ ../futures/test/EnsureTest.cpp \ - ../futures/test/ExecutorTest.cpp \ ../futures/test/FSMTest.cpp \ ../futures/test/FilterTest.cpp \ ../futures/test/FutureTest.cpp \ -- 2.34.1