SWDEV-436332: Temporarily disabling CTF Plugin

Change-Id: I368030fdca169c18bf85a7254fc6d3754ea15839
This commit is contained in:
Giovanni LB
2023-12-13 15:58:58 -03:00
committed by Giovanni Baraldi
parent 8dd9d9df51
commit fd7aa5758f
2 changed files with 2 additions and 6 deletions
-4
View File
@@ -32,10 +32,6 @@ if(ROCPROFILER_BUILD_PLUGIN_PERFETTO)
add_subdirectory(perfetto)
endif()
if(ROCPROFILER_BUILD_PLUGIN_CTF)
add_subdirectory(ctf)
endif()
if(ROCPROFILER_BUILD_PLUGIN_ATT)
add_subdirectory(att)
endif()
@@ -1347,7 +1347,7 @@ class VectorAddCTFTest : public CTFPluginTest {
bool hasFile() { return hasMetadataInDir("/tmp/tests-v2/ctf/"); }
};
TEST_F(VectorAddCTFTest, WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); }
TEST_F(VectorAddCTFTest, DISABLED_WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); }
class VectorAddCTFMPITest : public CTFPluginTest {
protected:
@@ -1362,7 +1362,7 @@ class VectorAddCTFMPITest : public CTFPluginTest {
bool hasFile() { return hasMetadataInDir("/tmp/tests-v2/ctf_7/"); }
};
TEST_F(VectorAddCTFMPITest, WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); }
TEST_F(VectorAddCTFMPITest, DISABLED_WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); }
/*
* ###################################################