diff --git a/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp b/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp index 5be2a6e9fa..056c6b988d 100644 --- a/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp +++ b/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp @@ -236,7 +236,7 @@ class HelloWorldTest : public ProfilerTest { // Test:1 Compares total num of kernel-names in golden output against current // profiler output -TEST_F(HelloWorldTest, WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { +TEST_F(HelloWorldTest, DISABLED_WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { // kernel info in current profiler run std::vector current_kernel_info; @@ -304,7 +304,7 @@ class VectorAddTest : public ProfilerTest { // Test:1 Compares total num of kernel-names in golden output against current // profiler output -TEST_F(VectorAddTest, WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { +TEST_F(VectorAddTest, DISABLED_WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { std::vector current_kernel_info; GetKernelInfoForRunningApplication(¤t_kernel_info); @@ -315,7 +315,7 @@ TEST_F(VectorAddTest, WhenRunningProfilerWithAppThenKernelNumbersMatchWithGolden // Test:2 Compares order of kernel-names in golden output against current // profiler output -TEST_F(VectorAddTest, WhenRunningProfilerWithAppThenKernelNamessMatchWithGoldenOutput) { +TEST_F(VectorAddTest, DISABLED_WhenRunningProfilerWithAppThenKernelNamessMatchWithGoldenOutput) { std::vector current_kernel_info; GetKernelInfoForRunningApplication(¤t_kernel_info); @@ -371,7 +371,7 @@ class HSATest : public ProfilerTest { // Test:1 Given profiler don't intercept any hsa calls in this app // we dont collect any counters by default. Expectation is, both vectors are // empty -TEST_F(HSATest, WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { +TEST_F(HSATest, DISABLED_WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { std::vector current_kernel_info; GetKernelInfoForRunningApplication(¤t_kernel_info); @@ -399,7 +399,7 @@ TEST_F(HSATest, WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput // // Test:1 Compares total num of kernel-names in golden output against current // // profiler output -// TEST_F(OpenMPTest, WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { +// TEST_F(OpenMPTest, DISABLED_WhenRunningProfilerWithAppThenKernelNumbersMatchWithGoldenOutput) { // std::vector current_kernel_info; // GetKernelInfoForRunningApplication(¤t_kernel_info);