diff --git a/projects/rocprofiler/plugin/CMakeLists.txt b/projects/rocprofiler/plugin/CMakeLists.txt index 2d049daad7..8bb8155c1d 100644 --- a/projects/rocprofiler/plugin/CMakeLists.txt +++ b/projects/rocprofiler/plugin/CMakeLists.txt @@ -35,3 +35,7 @@ endif() if(ROCPROFILER_BUILD_PLUGIN_ATT) add_subdirectory(att) endif() + +if(ROCPROFILER_BUILD_PLUGIN_CTF) + add_subdirectory(ctf) +endif() diff --git a/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp b/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp index c8ff773a1b..9808b3875f 100644 --- a/projects/rocprofiler/tests-v2/featuretests/profiler/profiler_gtest.cpp +++ b/projects/rocprofiler/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, DISABLED_WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); } +TEST_F(VectorAddCTFTest, 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, DISABLED_WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); } +TEST_F(VectorAddCTFMPITest, WhenRunningProfilerWithCTFTest) { EXPECT_EQ(hasFile(), true); } /* * ###################################################