From f9a3bd2477b1a686c989b8f48657a18da4936c97 Mon Sep 17 00:00:00 2001 From: gobhardw Date: Tue, 3 Dec 2024 10:12:52 +0530 Subject: [PATCH] Disabling kernel number, names checking tests Change-Id: I629d8e9029386bf6a23b2e866169044d63327241 [ROCm/rocprofiler commit: 9c68ae6ef8bc54a8622ad5f1746a4a27f59ffe71] --- .../tests-v2/featuretests/profiler/profiler_gtest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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);