diff options
Diffstat (limited to 'ext/threads/shared/t/av_simple.t')
-rw-r--r-- | ext/threads/shared/t/av_simple.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/threads/shared/t/av_simple.t b/ext/threads/shared/t/av_simple.t index 66fd732aff..67d9a32f3a 100644 --- a/ext/threads/shared/t/av_simple.t +++ b/ext/threads/shared/t/av_simple.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); } } @@ -134,4 +134,6 @@ ok(37, !defined delete($foo[0]), "Check that delete works from a thread"); ok(44, is_shared(@foo), "Check for sharing"); +exit(0); + # EOF |