diff --git a/kernels/test/op_add_test.cpp b/kernels/test/op_add_test.cpp index 5561ad67b66..60faa4efb47 100644 --- a/kernels/test/op_add_test.cpp +++ b/kernels/test/op_add_test.cpp @@ -816,8 +816,8 @@ TEST_F(OpAddOutKernelTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpAddOutKernelTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpAddOutKernelTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_addmm_test.cpp b/kernels/test/op_addmm_test.cpp index a2251784c17..ff02d9c0a79 100644 --- a/kernels/test/op_addmm_test.cpp +++ b/kernels/test/op_addmm_test.cpp @@ -529,8 +529,8 @@ TEST_F(OpAddmmOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpAddmmOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpAddmmOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_bitwise_not_test.cpp b/kernels/test/op_bitwise_not_test.cpp index 1b73574f9ff..702486f0d2a 100644 --- a/kernels/test/op_bitwise_not_test.cpp +++ b/kernels/test/op_bitwise_not_test.cpp @@ -155,8 +155,8 @@ TEST_F(OpBitwiseNotOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_EQ(out, expected); } -TEST_F(OpBitwiseNotOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpBitwiseNotOutTest, DISABLED_DynamicShapeUnbound) { /* %python out_args = "{1, 1}, torch::executor::TensorShapeDynamism::DYNAMIC_UNBOUND" %rewrite(unary_op) */ diff --git a/kernels/test/op_bmm_test.cpp b/kernels/test/op_bmm_test.cpp index edf2703e393..c870c412035 100644 --- a/kernels/test/op_bmm_test.cpp +++ b/kernels/test/op_bmm_test.cpp @@ -407,8 +407,8 @@ TEST_F(OpBmmOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpBmmOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpBmmOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; auto x = tf.make( diff --git a/kernels/test/op_clamp_test.cpp b/kernels/test/op_clamp_test.cpp index 81138fc8a55..aeb44f1d7ab 100644 --- a/kernels/test/op_clamp_test.cpp +++ b/kernels/test/op_clamp_test.cpp @@ -457,8 +457,8 @@ TEST_F(OpClampOutTest, DynamicShapeUpperBoundSameAsExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpClampOutTest, DynamicShapeUpperBoundLargerThanExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpClampOutTest, DISABLED_DynamicShapeUpperBoundLargerThanExpected) { TensorFactory tf; auto x = tf.make( @@ -480,8 +480,8 @@ TEST_F(OpClampOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpClampOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpClampOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; auto x = tf.make( diff --git a/kernels/test/op_clone_test.cpp b/kernels/test/op_clone_test.cpp index 43e4576548a..57a8aed2d6c 100644 --- a/kernels/test/op_clone_test.cpp +++ b/kernels/test/op_clone_test.cpp @@ -209,8 +209,8 @@ TEST_F(OpCloneTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpCloneTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpCloneTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_cumsum_test.cpp b/kernels/test/op_cumsum_test.cpp index 3e0ec164d04..720f7bd98e9 100644 --- a/kernels/test/op_cumsum_test.cpp +++ b/kernels/test/op_cumsum_test.cpp @@ -260,8 +260,8 @@ TEST_F(OpCumSumOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpCumSumOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpCumSumOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_detach_copy_test.cpp b/kernels/test/op_detach_copy_test.cpp index d5c558afd9d..fba497c75ab 100644 --- a/kernels/test/op_detach_copy_test.cpp +++ b/kernels/test/op_detach_copy_test.cpp @@ -190,8 +190,8 @@ TEST_F(OpDetachCopyOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpDetachCopyOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpDetachCopyOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_div_test.cpp b/kernels/test/op_div_test.cpp index 94f26d1b301..84d33fa2757 100644 --- a/kernels/test/op_div_test.cpp +++ b/kernels/test/op_div_test.cpp @@ -526,8 +526,8 @@ TEST_F(OpDivOutTest, BroadcastNDTest) { test_broadcast_3D(); } -TEST_F(OpDivOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpDivOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_floor_divide_test.cpp b/kernels/test/op_floor_divide_test.cpp index 8be1168eee1..166f7fdd4f9 100644 --- a/kernels/test/op_floor_divide_test.cpp +++ b/kernels/test/op_floor_divide_test.cpp @@ -175,8 +175,8 @@ TEST_F(OpFloorDivideTest, MismatchedOutputShapesDies) { ET_EXPECT_KERNEL_FAILURE(context_, op_floor_divide_out(a, b, out)); } -TEST_F(OpFloorDivideTest, BroadcastDimSizeIsOneAB) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_BroadcastDimSizeIsOneAB) { TensorFactory tf; Tensor x = tf.make( @@ -195,8 +195,8 @@ TEST_F(OpFloorDivideTest, BroadcastDimSizeIsOneAB) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFloorDivideTest, BroadcastDimSizeMissingAB) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_BroadcastDimSizeMissingAB) { TensorFactory tf; Tensor x = tf.make( @@ -215,8 +215,8 @@ TEST_F(OpFloorDivideTest, BroadcastDimSizeMissingAB) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFloorDivideTest, BroadcastDimSizeIsOneBA) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_BroadcastDimSizeIsOneBA) { TensorFactory tf; Tensor x = tf.make({1, 2}, {0.522396445274353, 0.6753279566764832}); @@ -235,8 +235,8 @@ TEST_F(OpFloorDivideTest, BroadcastDimSizeIsOneBA) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFloorDivideTest, BroadcastDimSizeMissingBA) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_BroadcastDimSizeMissingBA) { TensorFactory tf; Tensor x = tf.make({1, 2}, {0.522396445274353, 0.6753279566764832}); @@ -255,8 +255,8 @@ TEST_F(OpFloorDivideTest, BroadcastDimSizeMissingBA) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFloorDivideTest, DynamicShapeUpperBoundSameAsExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_DynamicShapeUpperBoundSameAsExpected) { TensorFactory tf; Tensor x = tf.make( @@ -283,8 +283,8 @@ TEST_F(OpFloorDivideTest, DynamicShapeUpperBoundSameAsExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFloorDivideTest, DynamicShapeUpperBoundLargerThanExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_DynamicShapeUpperBoundLargerThanExpected) { TensorFactory tf; Tensor x = tf.make( @@ -311,8 +311,8 @@ TEST_F(OpFloorDivideTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFloorDivideTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpFloorDivideTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_full_like_test.cpp b/kernels/test/op_full_like_test.cpp index 6e7692f5347..23ac4e685f9 100644 --- a/kernels/test/op_full_like_test.cpp +++ b/kernels/test/op_full_like_test.cpp @@ -181,8 +181,8 @@ TEST_F(OpFullLikeTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpFullLikeTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpFullLikeTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_gelu_test.cpp b/kernels/test/op_gelu_test.cpp index 8fae399fb18..9303b034ca2 100644 --- a/kernels/test/op_gelu_test.cpp +++ b/kernels/test/op_gelu_test.cpp @@ -213,8 +213,8 @@ TEST_F(OpGeluTest, DynamicShapeUpperBoundSameAsExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpGeluTest, DynamicShapeUpperBoundLargerThanExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpGeluTest, DISABLED_DynamicShapeUpperBoundLargerThanExpected) { TensorFactory tf; Tensor x = tf.make( @@ -240,8 +240,8 @@ TEST_F(OpGeluTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpGeluTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpGeluTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_glu_test.cpp b/kernels/test/op_glu_test.cpp index ac931302f98..9bee3a6a5a2 100644 --- a/kernels/test/op_glu_test.cpp +++ b/kernels/test/op_glu_test.cpp @@ -200,8 +200,8 @@ TEST_F(OpGluOutTest, AllNonFloatOutputDTypeDies) { #undef TEST_ENTRY } -TEST_F(OpGluOutTest, DynamicShapeUpperBoundSameAsExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpGluOutTest, DISABLED_DynamicShapeUpperBoundSameAsExpected) { TensorFactory tf; Tensor x = tf.make( @@ -253,8 +253,8 @@ TEST_F(OpGluOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpGluOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpGluOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_linear_test.cpp b/kernels/test/op_linear_test.cpp index 0ad5790a550..9b0ba782271 100644 --- a/kernels/test/op_linear_test.cpp +++ b/kernels/test/op_linear_test.cpp @@ -338,8 +338,8 @@ TEST_F(OpLinearOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpLinearOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpLinearOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_log_softmax_test.cpp b/kernels/test/op_log_softmax_test.cpp index 3bcbee96a1c..84255b8a29c 100644 --- a/kernels/test/op_log_softmax_test.cpp +++ b/kernels/test/op_log_softmax_test.cpp @@ -421,8 +421,8 @@ TEST_F(OpLogSoftmaxOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpLogSoftmaxOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpLogSoftmaxOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_logit_test.cpp b/kernels/test/op_logit_test.cpp index 1bb0a43a37d..0056e984bb7 100644 --- a/kernels/test/op_logit_test.cpp +++ b/kernels/test/op_logit_test.cpp @@ -259,8 +259,8 @@ TEST_F(OpLogitOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpLogitOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpLogitOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_masked_fill_test.cpp b/kernels/test/op_masked_fill_test.cpp index 41962ba5ed8..b36b54c2b81 100644 --- a/kernels/test/op_masked_fill_test.cpp +++ b/kernels/test/op_masked_fill_test.cpp @@ -377,8 +377,8 @@ TEST_F(OpMaskedFillTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpMaskedFillTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpMaskedFillTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; TensorFactory bool_tf; diff --git a/kernels/test/op_mean_test.cpp b/kernels/test/op_mean_test.cpp index 65d21b45518..23f4b675d68 100644 --- a/kernels/test/op_mean_test.cpp +++ b/kernels/test/op_mean_test.cpp @@ -465,8 +465,8 @@ TEST_F(OpMeanOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpMeanOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpMeanOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_mm_test.cpp b/kernels/test/op_mm_test.cpp index 63d06143b5d..62d5ed29e26 100644 --- a/kernels/test/op_mm_test.cpp +++ b/kernels/test/op_mm_test.cpp @@ -255,8 +255,8 @@ TEST_F(OpMmOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpMmOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpMmOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_mul_test.cpp b/kernels/test/op_mul_test.cpp index 28baa0cbd16..4553f8a53b6 100644 --- a/kernels/test/op_mul_test.cpp +++ b/kernels/test/op_mul_test.cpp @@ -711,8 +711,8 @@ TEST_F(OpMulOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpMulOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpMulOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_relu_test.cpp b/kernels/test/op_relu_test.cpp index 7d3cfc696b2..128c4388615 100644 --- a/kernels/test/op_relu_test.cpp +++ b/kernels/test/op_relu_test.cpp @@ -288,8 +288,8 @@ TEST_F(OpReluTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpReluTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Unbound dynamic shape not supported"; +// DISABLED: Unbound dynamic shape not supported +TEST_F(OpReluTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_round_test.cpp b/kernels/test/op_round_test.cpp index e05f3a68d40..cbf9b6515d9 100644 --- a/kernels/test/op_round_test.cpp +++ b/kernels/test/op_round_test.cpp @@ -230,8 +230,8 @@ TEST_F(OpRoundTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_EQ(out, expected); } -TEST_F(OpRoundTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpRoundTest, DISABLED_DynamicShapeUnbound) { /* %python out_args = "{1, 1}, torch::executor::TensorShapeDynamism::DYNAMIC_UNBOUND" %rewrite(unary_op) */ diff --git a/kernels/test/op_softmax_test.cpp b/kernels/test/op_softmax_test.cpp index a5d26d0a4f9..3c61acb7d29 100644 --- a/kernels/test/op_softmax_test.cpp +++ b/kernels/test/op_softmax_test.cpp @@ -302,8 +302,8 @@ TEST_F(OpSoftmaxOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpSoftmaxOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpSoftmaxOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_split_copy_test.cpp b/kernels/test/op_split_copy_test.cpp index 76b29fa30bb..2dd112b1ace 100644 --- a/kernels/test/op_split_copy_test.cpp +++ b/kernels/test/op_split_copy_test.cpp @@ -563,14 +563,16 @@ TEST_F(OpSplitCopyTensorOutTest, DynamicShapeUpperBoundSameAsExpected) { {2, 3}, torch::executor::TensorShapeDynamism::DYNAMIC_BOUND); } -TEST_F(OpSplitCopyTensorOutTest, DynamicShapeUpperBoundLargerThanExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F( + OpSplitCopyTensorOutTest, + DISABLED_DynamicShapeUpperBoundLargerThanExpected) { test_dynamic_shape( {10, 10}, torch::executor::TensorShapeDynamism::DYNAMIC_BOUND); } -TEST_F(OpSplitCopyTensorOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpSplitCopyTensorOutTest, DISABLED_DynamicShapeUnbound) { test_dynamic_shape( {1, 1}, torch::executor::TensorShapeDynamism::DYNAMIC_UNBOUND); } diff --git a/kernels/test/op_sub_test.cpp b/kernels/test/op_sub_test.cpp index c8e7c69c443..41ebc2f2733 100644 --- a/kernels/test/op_sub_test.cpp +++ b/kernels/test/op_sub_test.cpp @@ -637,8 +637,8 @@ TEST_F(OpSubOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpSubOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpSubOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make( diff --git a/kernels/test/op_unbind_copy_test.cpp b/kernels/test/op_unbind_copy_test.cpp index 70825537490..c98edc5e1f7 100644 --- a/kernels/test/op_unbind_copy_test.cpp +++ b/kernels/test/op_unbind_copy_test.cpp @@ -363,14 +363,16 @@ TEST_F(OpUnbindCopyIntOutTest, DynamicShapeUpperBoundSameAsExpected) { {2, 4}, torch::executor::TensorShapeDynamism::DYNAMIC_BOUND); } -TEST_F(OpUnbindCopyIntOutTest, DynamicShapeUpperBoundLargerThanExpected) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F( + OpUnbindCopyIntOutTest, + DISABLED_DynamicShapeUpperBoundLargerThanExpected) { test_dynamic_shape( {10, 10}, torch::executor::TensorShapeDynamism::DYNAMIC_BOUND); } -TEST_F(OpUnbindCopyIntOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape not supported"; +// DISABLED: Dynamic shape not supported +TEST_F(OpUnbindCopyIntOutTest, DISABLED_DynamicShapeUnbound) { test_dynamic_shape( {1, 1}, torch::executor::TensorShapeDynamism::DYNAMIC_UNBOUND); } diff --git a/kernels/test/op_var_mean_test.cpp b/kernels/test/op_var_mean_test.cpp index 7049c21d65b..05a0281a090 100644 --- a/kernels/test/op_var_mean_test.cpp +++ b/kernels/test/op_var_mean_test.cpp @@ -635,8 +635,8 @@ TEST_F(OpVarMeanCorrectionOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(mean_out, expected_mean); } -TEST_F(OpVarMeanCorrectionOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpVarMeanCorrectionOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make({3, 2}, {0.49, 0.40, 0.56, 0.38, 0.49, 0.56}); diff --git a/kernels/test/op_var_test.cpp b/kernels/test/op_var_test.cpp index bfa73bfe15c..63e7e94f982 100644 --- a/kernels/test/op_var_test.cpp +++ b/kernels/test/op_var_test.cpp @@ -449,8 +449,8 @@ TEST_F(OpVarOutTest, DynamicShapeUpperBoundLargerThanExpected) { EXPECT_TENSOR_CLOSE(out, expected_result); } -TEST_F(OpVarOutTest, DynamicShapeUnbound) { - GTEST_SKIP() << "Dynamic shape unbound not supported"; +// DISABLED: Dynamic shape unbound not supported +TEST_F(OpVarOutTest, DISABLED_DynamicShapeUnbound) { TensorFactory tf; Tensor x = tf.make({3, 2}, {0.49, 0.40, 0.56, 0.38, 0.49, 0.56});