]> git.ipfire.org Git - thirdparty/git.git/commitdiff
trace2 tests: fix PTHREADS prereq
authorTodd Zullinger <tmz@pobox.com>
Thu, 25 May 2023 03:12:07 +0000 (23:12 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 May 2023 04:31:15 +0000 (13:31 +0900)
The prereq guard added in 14903c8e92 (trace2 tests: guard pthread test
with "PTHREAD", 2022-11-24) lacks the S in PTHREADS, causing it to never
be satisfied.  Fix the spelling of the prereq.

Signed-off-by: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0211-trace2-perf.sh

index b4e91351181bcbe767f9681a689e570025dd4f53..cfba6861322e373c64897e4c543838b7879cf3e0 100755 (executable)
@@ -203,7 +203,7 @@ test_expect_success 'stopwatch timer test/test1' '
        have_timer_event "main" "timer" "test" "test1" 5 actual
 '
 
-test_expect_success PTHREAD 'stopwatch timer test/test2' '
+test_expect_success PTHREADS 'stopwatch timer test/test2' '
        test_when_finished "rm trace.perf actual" &&
        test_config_global trace2.perfBrief 1 &&
        test_config_global trace2.perfTarget "$(pwd)/trace.perf" &&
@@ -249,7 +249,7 @@ test_expect_success 'global counter test/test1' '
        have_counter_event "main" "counter" "test" "test1" 15 actual
 '
 
-test_expect_success PTHREAD 'global counter test/test2' '
+test_expect_success PTHREADS 'global counter test/test2' '
        test_when_finished "rm trace.perf actual" &&
        test_config_global trace2.perfBrief 1 &&
        test_config_global trace2.perfTarget "$(pwd)/trace.perf" &&