summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorNikola Knezevic <indy@tesla.rcub.bg.ac.yu>2002-05-28 10:17:53 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-28 12:26:34 +0000
commit195d559b8ef22ad8837051fd15a3100fca99b37f (patch)
treeb644beae0d8adf1368e4e1c588e706bc30c5e6ab /t
parent9a8de00333030b382665b01907d7004a16aafd41 (diff)
downloadperl-195d559b8ef22ad8837051fd15a3100fca99b37f.tar.gz
Test::Harness and skiping tests functionality
Message-ID: <40949173.20020528081753@tesla.rcub.bg.ac.yu> p4raw-id: //depot/perl@16829
Diffstat (limited to 't')
-rw-r--r--t/op/64bitint.t2
-rw-r--r--t/test.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/op/64bitint.t b/t/op/64bitint.t
index 494f9fd14f..e8314fac8a 100644
--- a/t/op/64bitint.t
+++ b/t/op/64bitint.t
@@ -3,7 +3,7 @@
BEGIN {
eval { my $q = pack "q", 0 };
if ($@) {
- print "1..0\n# Skip: no 64-bit types\n";
+ print "1..0 # Skip: no 64-bit types\n";
exit(0);
}
chdir 't' if -d 't';
diff --git a/t/test.pl b/t/test.pl
index 7df12b6f4d..9b3d9d67cf 100644
--- a/t/test.pl
+++ b/t/test.pl
@@ -40,7 +40,7 @@ sub _diag {
sub skip_all {
if (@_) {
- print STDOUT "1..0 - @_\n";
+ print STDOUT "1..0 # Skipped: @_\n";
} else {
print STDOUT "1..0\n";
}