From e3ec2b3a8e4ab818203f3f5a423d314186244bd6 Mon Sep 17 00:00:00 2001 From: RandySheriffH <48490400+RandySheriffH@users.noreply.github.com> Date: Tue, 2 May 2023 21:05:54 -0700 Subject: [PATCH] Exclude cases from reduced build (#15779) Exclude cases from reduced build to unblock pipeline. Fixed [AB#15326](https://aiinfra.visualstudio.com/6a833879-cd9b-44a4-a9de-adc2d818f13c/_workitems/edit/15326) Co-authored-by: Randy Shuai --- onnxruntime/test/shared_lib/test_inference.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/test/shared_lib/test_inference.cc b/onnxruntime/test/shared_lib/test_inference.cc index af1df0ed63..328652f03a 100644 --- a/onnxruntime/test/shared_lib/test_inference.cc +++ b/onnxruntime/test/shared_lib/test_inference.cc @@ -2827,7 +2827,7 @@ TEST(CApiTest, TestMultiStreamInferenceSimpleSSD) { } #endif -#if !defined(ORT_MINIMAL_BUILD) +#if !defined(ORT_MINIMAL_BUILD) && !defined(REDUCED_OPS_BUILD) TEST(MultiKernelSingleSchemaTest, valid) { Ort::SessionOptions session_options; session_options.SetIntraOpNumThreads(1);