From e8a88164281d6c448b75896d33bee6d1a03e9036 Mon Sep 17 00:00:00 2001 From: Aurelius84 Date: Fri, 3 Sep 2021 18:55:01 +0800 Subject: [PATCH] disable test_standalone_executor temporarily (#35436) --- python/paddle/fluid/tests/unittests/interpreter/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/paddle/fluid/tests/unittests/interpreter/CMakeLists.txt b/python/paddle/fluid/tests/unittests/interpreter/CMakeLists.txt index 7692f8befdf..c1ca62629e6 100644 --- a/python/paddle/fluid/tests/unittests/interpreter/CMakeLists.txt +++ b/python/paddle/fluid/tests/unittests/interpreter/CMakeLists.txt @@ -1,6 +1,8 @@ file(GLOB TEST_INTERP_CASES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "test_*.py") string(REPLACE ".py" "" TEST_INTERP_CASES "${TEST_INTERP_CASES}") +list(REMOVE_ITEM TEST_INTERP_CASES test_standalone_executor) + foreach(target ${TEST_INTERP_CASES}) py_test_modules(${target} MODULES ${target}) endforeach() -- GitLab