From 5afe900efdadb68c17474c5fdb66edd2d9ce542f Mon Sep 17 00:00:00 2001 From: Bertan Dogancay <111835151+BertanDogancay@users.noreply.github.com> Date: Wed, 22 Jan 2025 18:48:10 -0500 Subject: [PATCH] Only look for librccl .co files in StackSize test (#1499) Co-authored-by: BertanDogancay --- test/StandaloneTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/StandaloneTests.cpp b/test/StandaloneTests.cpp index f699aeb4c9..9021faa72e 100644 --- a/test/StandaloneTests.cpp +++ b/test/StandaloneTests.cpp @@ -269,7 +269,7 @@ namespace RcclUnitTesting const char* mainKernel = "ncclDevKernel"; // Look for the .co files - std::vector coFileList = splitString(executeCommand("find ../ -type f -name \"*.co\""), '\n'); + std::vector coFileList = splitString(executeCommand("find ../ -type f -name \"librccl*.co\""), '\n'); // Check if the .co files exist in the build directory if (coFileList.empty())