From efa80cb30ed5144da9bc1adeb67d0651c80e46b0 Mon Sep 17 00:00:00 2001 From: Vivek Kale <11766050+vlkale@users.noreply.github.com> Date: Wed, 10 Apr 2024 20:36:50 -0700 Subject: [PATCH] test_parfor.cpp: fix sampler number from 11 to 12 --- tests/sampler/test_parfor.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/sampler/test_parfor.cpp b/tests/sampler/test_parfor.cpp index 866f29261..2616614f4 100644 --- a/tests/sampler/test_parfor.cpp +++ b/tests/sampler/test_parfor.cpp @@ -34,10 +34,10 @@ static const std::vector matchers{ "KokkosP: sample 6 finished with child-begin function.", "KokkosP: sample 6 calling child-end function...", "KokkosP: sample 6 finished with child-end function.", - "KokkosP: sample 11 calling child-begin function...", - "KokkosP: sample 11 finished with child-begin function.", - "KokkosP: sample 11 calling child-end function...", - "KokkosP: sample 11 finished with child-end function."}; + "KokkosP: sample 12 calling child-begin function...", + "KokkosP: sample 12 finished with child-begin function.", + "KokkosP: sample 12 calling child-end function...", + "KokkosP: sample 12 finished with child-end function."}; /** * @test This test checks that the tool effectively samples. @@ -78,7 +78,7 @@ TEST(SamplerTest, ktoEnvVarDefault) { EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 8 calling"))); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 9 calling"))); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 10 calling"))); - EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 12 calling"))); + EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 11 calling"))); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 13 calling"))); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 14 calling"))); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: sample 15 calling")));