summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-31 01:54:38 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-31 01:54:38 +0000
commit0be28027f58349aeeeddaa1ee41beb2e9dcc5c39 (patch)
tree71551516d7d6ea3aeb6a88ea059d98d552256ef8 /t
parenta10d74f301e9c83108aa701b20914b6bb55d9310 (diff)
downloadperl-0be28027f58349aeeeddaa1ee41beb2e9dcc5c39.tar.gz
Upgrade to Test::Harness 2.24.
p4raw-id: //depot/perl@16914
Diffstat (limited to 't')
-rw-r--r--t/lib/sample-tests/die1
-rw-r--r--t/lib/sample-tests/skip_nomsg4
-rw-r--r--t/lib/sample-tests/skipall3
-rw-r--r--t/lib/sample-tests/skipall_nomsg2
4 files changed, 9 insertions, 1 deletions
diff --git a/t/lib/sample-tests/die b/t/lib/sample-tests/die
index ffd8e88109..4c8534082d 100644
--- a/t/lib/sample-tests/die
+++ b/t/lib/sample-tests/die
@@ -1,3 +1,2 @@
-use lib 'lib';
use if ($^O eq 'VMS'), vmsish => 'hushed';
exit 1; # exit because die() can be noisy
diff --git a/t/lib/sample-tests/skip_nomsg b/t/lib/sample-tests/skip_nomsg
new file mode 100644
index 0000000000..51d1ed6b43
--- /dev/null
+++ b/t/lib/sample-tests/skip_nomsg
@@ -0,0 +1,4 @@
+print <<DUMMY;
+1..1
+ok 1 # Skip
+DUMMY
diff --git a/t/lib/sample-tests/skipall b/t/lib/sample-tests/skipall
new file mode 100644
index 0000000000..8c4679660c
--- /dev/null
+++ b/t/lib/sample-tests/skipall
@@ -0,0 +1,3 @@
+print <<DUMMY_TEST;
+1..0 # skip: rope
+DUMMY_TEST
diff --git a/t/lib/sample-tests/skipall_nomsg b/t/lib/sample-tests/skipall_nomsg
new file mode 100644
index 0000000000..9b0dc11a69
--- /dev/null
+++ b/t/lib/sample-tests/skipall_nomsg
@@ -0,0 +1,2 @@
+print "1..0\n";
+exit 0;