diff --git a/plugin/CMakeLists.txt b/plugin/CMakeLists.txt index 8dad8387e1..2d049daad7 100644 --- a/plugin/CMakeLists.txt +++ b/plugin/CMakeLists.txt @@ -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() diff --git a/tests-v2/featuretests/profiler/profiler_gtest.cpp b/tests-v2/featuretests/profiler/profiler_gtest.cpp index 9808b3875f..c8ff773a1b 100644 --- a/tests-v2/featuretests/profiler/profiler_gtest.cpp +++ b/tests-v2/featuretests/profiler/profiler_gtest.cpp @@ -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); } /* * ###################################################