From c26f2c951d27dcd634884931e4471f64bf7e1ad7 Mon Sep 17 00:00:00 2001 From: JeniferC99 <150404595+JeniferC99@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:01:27 -0700 Subject: [PATCH 1/2] Update tracer_gtest.cpp --- .../tests-v2/featuretests/tracer/tracer_gtest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/rocprofiler/tests-v2/featuretests/tracer/tracer_gtest.cpp b/projects/rocprofiler/tests-v2/featuretests/tracer/tracer_gtest.cpp index 1febc6d3a5f..4a454994840 100644 --- a/projects/rocprofiler/tests-v2/featuretests/tracer/tracer_gtest.cpp +++ b/projects/rocprofiler/tests-v2/featuretests/tracer/tracer_gtest.cpp @@ -239,7 +239,7 @@ TEST_F(HelloWorldTest, DISABLED_WhenRunningTracerWithAppThenKernelInfoMatchWithG // Test:2 Compares order of kernel-names in golden output against current // tracer output -TEST_F(HelloWorldTest, WhenRunningTracerWithAppThenFunctionNamesMatchWithGoldenOutput) { +TEST_F(HelloWorldTest, DISABLED_WhenRunningTracerWithAppThenFunctionNamesMatchWithGoldenOutput) { // kernel info in current tracer run std::vector current_kernel_info; GetKernelInfoForRunningApplication(¤t_kernel_info); @@ -262,7 +262,7 @@ TEST_F(HelloWorldTest, WhenRunningTracerWithAppThenFunctionNamesMatchWithGoldenO // Test:3 Compares order of kernel-names in golden output against current // tracer output -TEST_F(HelloWorldTest, WhenRunningTracerWithAppThenKernelDurationShouldBePositive) { +TEST_F(HelloWorldTest, DISABLED_WhenRunningTracerWithAppThenKernelDurationShouldBePositive) { // kernel info in current tracer run std::vector current_kernel_info; @@ -274,7 +274,7 @@ TEST_F(HelloWorldTest, WhenRunningTracerWithAppThenKernelDurationShouldBePositiv // Test:4 Compares end-time is greater than start-time in current // tracer output -TEST_F(HelloWorldTest, WhenRunningTracerWithAppThenEndTimeIsGreaterThenStartTime) { +TEST_F(HelloWorldTest, DISABLED_WhenRunningTracerWithAppThenEndTimeIsGreaterThenStartTime) { // kernel info in current profiler run std::vector current_kernel_info; From 4da8e7762b57ec7be438399481aa18d2794bc06d Mon Sep 17 00:00:00 2001 From: JeniferC99 <150404595+JeniferC99@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:07:09 -0700 Subject: [PATCH 2/2] Update profiler_gtest.cpp --- .../tests-v2/featuretests/profiler/profiler_gtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp b/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp index 47587c5ee52..e3cb98b9ee5 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;