summaryrefslogtreecommitdiff
path: root/ext/threads/t/basic.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/threads/t/basic.t')
-rwxr-xr-xext/threads/t/basic.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/threads/t/basic.t b/ext/threads/t/basic.t
index 727f16c67d..416d371db9 100755
--- a/ext/threads/t/basic.t
+++ b/ext/threads/t/basic.t
@@ -8,7 +8,7 @@ BEGIN {
}
use Config;
if (! $Config{'useithreads'}) {
- print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
+ print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
@@ -165,4 +165,6 @@ $thr1 = threads->create(sub {});
ok(33, "$thr1" eq $thr1->tid(), 'Stringify');
$thr1->join();
+exit(0);
+
# EOF