From f3a2392662e975dbc6d7b6253ce9f4917526ae0a Mon Sep 17 00:00:00 2001 From: WeiXin Date: Wed, 6 Jan 2021 19:47:15 +0800 Subject: [PATCH] Extend the timeout for the (#30151) --- python/paddle/fluid/tests/unittests/CMakeLists.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/python/paddle/fluid/tests/unittests/CMakeLists.txt b/python/paddle/fluid/tests/unittests/CMakeLists.txt index 09222c8e132..e3290bce63e 100644 --- a/python/paddle/fluid/tests/unittests/CMakeLists.txt +++ b/python/paddle/fluid/tests/unittests/CMakeLists.txt @@ -697,8 +697,13 @@ set_tests_properties(test_nearest_interp_v2_op PROPERTIES TIMEOUT 120) set_tests_properties(test_trilinear_interp_op PROPERTIES TIMEOUT 120) set_tests_properties(test_bicubic_interp_v2_op PROPERTIES TIMEOUT 120) set_tests_properties(test_gather_op PROPERTIES TIMEOUT 120) -set_tests_properties(test_static_save_load PROPERTIES TIMEOUT 200) -set_tests_properties(test_paddle_save_load PROPERTIES TIMEOUT 150) +if (WIN32) + set_tests_properties(test_static_save_load PROPERTIES TIMEOUT 300) + set_tests_properties(test_paddle_save_load PROPERTIES TIMEOUT 250) +else() + set_tests_properties(test_static_save_load PROPERTIES TIMEOUT 200) + set_tests_properties(test_paddle_save_load PROPERTIES TIMEOUT 150) +endif() set_tests_properties(test_imperative_selected_rows_to_lod_tensor PROPERTIES TIMEOUT 120) set_tests_properties(test_index_select_op PROPERTIES TIMEOUT 120) set_tests_properties(test_parallel_ssa_graph_inference_feed_partial_data PROPERTIES TIMEOUT 120) -- GitLab