From f901f020db0a169b796cc029008a6f6fcf5ca3d3 Mon Sep 17 00:00:00 2001 From: Ruibiao Chen Date: Thu, 11 Aug 2022 19:01:40 +0800 Subject: [PATCH] Disable ExecutionStrategy UTs for standalone executor (#45067) --- python/paddle/fluid/tests/unittests/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/paddle/fluid/tests/unittests/CMakeLists.txt b/python/paddle/fluid/tests/unittests/CMakeLists.txt index 73139c7fbb..55d265770a 100755 --- a/python/paddle/fluid/tests/unittests/CMakeLists.txt +++ b/python/paddle/fluid/tests/unittests/CMakeLists.txt @@ -1759,3 +1759,9 @@ set_tests_properties(test_renorm_op_without_eager PROPERTIES TIMEOUT 120) py_test_modules( test_eager_deletion_padding_rnn_for_interpretercore MODULES test_eager_deletion_padding_rnn ENVS FLAGS_CONVERT_GRAPH_TO_PROGRAM=true) + +# ExecutionStrategy is deprecated in standalone executor +set_tests_properties(test_parallel_executor_dry_run + PROPERTIES ENVIRONMENT "FLAGS_USE_STANDALONE_EXECUTOR=0") +set_tests_properties(test_parallel_executor_drop_scope + PROPERTIES ENVIRONMENT "FLAGS_USE_STANDALONE_EXECUTOR=0") -- GitLab