summaryrefslogtreecommitdiff
path: root/t/op.flip
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
commitfe14fcc35f78a371a174a1d14256c2f35ae4262b (patch)
treed472cb1055c47b9701cb0840969aacdbdbc9354a /t/op.flip
parent27e2fb84680b9cc1db17238d5bf10b97626f477f (diff)
downloadperl-fe14fcc35f78a371a174a1d14256c2f35ae4262b.tar.gz
perl 4.0.00: (no release announcement available)perl-4.0.00
So far, 4.0 is still a beta test version. For the last production version, look in pub/perl.3.0/kits@44.
Diffstat (limited to 't/op.flip')
-rw-r--r--t/op.flip26
1 files changed, 0 insertions, 26 deletions
diff --git a/t/op.flip b/t/op.flip
deleted file mode 100644
index 19fdf86e7e..0000000000
--- a/t/op.flip
+++ /dev/null
@@ -1,26 +0,0 @@
-#!./perl
-
-# $Header: op.flip,v 3.0 89/10/18 15:29:07 lwall Locked $
-
-print "1..8\n";
-
-@a = (1,2,3,4,5,6,7,8,9,10,11,12);
-
-while ($_ = shift(a)) {
- if ($x = /4/../8/) { $z = $x; print "ok ", $x + 0, "\n"; }
- $y .= /1/../2/;
-}
-
-if ($z eq '5E0') {print "ok 6\n";} else {print "not ok 6\n";}
-
-if ($y eq '12E0123E0') {print "ok 7\n";} else {print "not ok 7\n";}
-
-@a = ('a','b','c','d','e','f','g');
-
-open(of,'../Makefile');
-while (<of>) {
- (3 .. 5) && $foo .= $_;
-}
-$x = ($foo =~ y/\n/\n/);
-
-if ($x eq 3) {print "ok 8\n";} else {print "not ok 8 $x:$foo:\n";}