diff --git a/onnxruntime/test/providers/cpu/nn/pool_op_test.cc b/onnxruntime/test/providers/cpu/nn/pool_op_test.cc index a564893388..7f56eaa0a0 100644 --- a/onnxruntime/test/providers/cpu/nn/pool_op_test.cc +++ b/onnxruntime/test/providers/cpu/nn/pool_op_test.cc @@ -915,7 +915,13 @@ TEST(PoolTest, AveragePool_DefaultStrides) { test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } +#ifdef USE_QNN +// TODO: Unskip when fixed AB#14594 +// Error message: ComposeGraph Failed to compose Qnn graph. +TEST(PoolTest, DISABLED_AveragePool_10_ceil1_2d) { +#else TEST(PoolTest, AveragePool_10_ceil1_2d) { +#endif // TODO: Unskip when fixed #41968513 if (DefaultDmlExecutionProvider().get() != nullptr) { GTEST_SKIP() << "Skipping because of the following error: MLOperatorAuthorImpl.cpp(2100): The parameter is incorrect."; diff --git a/tools/ci_build/build.py b/tools/ci_build/build.py index 819edfafb5..5afb9c7377 100644 --- a/tools/ci_build/build.py +++ b/tools/ci_build/build.py @@ -1741,8 +1741,8 @@ def run_onnxruntime_tests(args, source_dir, ctest_path, build_dir, configs): executables.append("onnxruntime_global_thread_pools_test") executables.append("onnxruntime_api_tests_without_env") executables.append("onnxruntime_customopregistration_test") - for exe in executables: - run_subprocess([os.path.join(cwd, exe)], cwd=cwd, dll_path=dll_path) + for exe in executables: + run_subprocess([os.path.join(cwd, exe)], cwd=cwd, dll_path=dll_path) else: ctest_cmd = [ctest_path, "--build-config", config, "--verbose", "--timeout", args.test_all_timeout]