From 02412ff3538905892ead8238f3dfefa5480bb2de Mon Sep 17 00:00:00 2001 From: gobhardw Date: Sat, 3 Jun 2023 09:55:38 +0530 Subject: [PATCH] SWDEV-397576 Fixing typo in DISABLED keyword Change-Id: Ia1e391e2503957a451d6f7051291d092a33b7e04 --- tests/featuretests/gtests_main.cpp | 6 +++--- tests/featuretests/profiler/profiler_gtest.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/featuretests/gtests_main.cpp b/tests/featuretests/gtests_main.cpp index f62373f1c3..cc85d44e78 100644 --- a/tests/featuretests/gtests_main.cpp +++ b/tests/featuretests/gtests_main.cpp @@ -9,7 +9,7 @@ int main(int argc, char** argv) { testing::FLAGS_gtest_death_test_style = "threadsafe"; // Add line below to disable any problematic test testing::GTEST_FLAG(filter) = - "-OpenMPTest.*:ProfilerSPMTest*:ProfilerMQTest*:ProfilerMPTest*:MPITest*"; + "-OpenMPTest.*:ProfilerSPMTest.*:ProfilerMQTest.*:ProfilerMPTest.*:MPITest.*"; // Disable ATT test fir gfx10 GPUs until its supported hsa_init(); // iterate for gpu's @@ -20,8 +20,8 @@ int main(int argc, char** argv) { std::string gfx_name = gpu_name; if (gfx_name.find("gfx10") != std::string::npos) { testing::GTEST_FLAG(filter) = - "-ATTCollection.*:OpenMPTest.*:ProfilerSPMTest*:ProfilerMQTest:*ProfilerMPTest*:" - "MPITest*"; + "-ATTCollection.*:OpenMPTest.*:ProfilerSPMTest*:ProfilerMQTest.*:*ProfilerMPTest.*:" + "MPITest.*"; } return HSA_STATUS_SUCCESS; }, diff --git a/tests/featuretests/profiler/profiler_gtest.cpp b/tests/featuretests/profiler/profiler_gtest.cpp index c2849f375e..baaba65571 100644 --- a/tests/featuretests/profiler/profiler_gtest.cpp +++ b/tests/featuretests/profiler/profiler_gtest.cpp @@ -1249,7 +1249,7 @@ class ProfilerMQTest : public ::testing::Test { }; -TEST_F(ProfilerMQTest, DISBALED_WhenRunningMultiProcessTestItPasses) { +TEST_F(ProfilerMQTest, DISABLED_WhenRunningMultiProcessTestItPasses) { int test_status = -1; std::string profiler_output;