|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T s
Length: 1925 (0x785) Types: TextFile Names: »study.t«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦b5330643c⟧ »./cops/perl-4.019/perl.tar.Z« └─⟦2b9a58213⟧ └─⟦this⟧ »perl-4.019/t/op/study.t«
#!./perl # $Header: study.t,v 4.0 91/03/20 01:54:59 lwall Locked $ print "1..24\n"; $x = "abc\ndef\n"; study($x); if ($x =~ /^abc/) {print "ok 1\n";} else {print "not ok 1\n";} if ($x !~ /^def/) {print "ok 2\n";} else {print "not ok 2\n";} $* = 1; if ($x =~ /^def/) {print "ok 3\n";} else {print "not ok 3\n";} $* = 0; $_ = '123'; study; if (/^([0-9][0-9]*)/) {print "ok 4\n";} else {print "not ok 4\n";} if ($x =~ /^xxx/) {print "not ok 5\n";} else {print "ok 5\n";} if ($x !~ /^abc/) {print "not ok 6\n";} else {print "ok 6\n";} if ($x =~ /def/) {print "ok 7\n";} else {print "not ok 7\n";} if ($x !~ /def/) {print "not ok 8\n";} else {print "ok 8\n";} study($x); if ($x !~ /.def/) {print "ok 9\n";} else {print "not ok 9\n";} if ($x =~ /.def/) {print "not ok 10\n";} else {print "ok 10\n";} if ($x =~ /\ndef/) {print "ok 11\n";} else {print "not ok 11\n";} if ($x !~ /\ndef/) {print "not ok 12\n";} else {print "ok 12\n";} $_ = 'aaabbbccc'; study; if (/(a*b*)(c*)/ && $1 eq 'aaabbb' && $2 eq 'ccc') { print "ok 13\n"; } else { print "not ok 13\n"; } if (/(a+b+c+)/ && $1 eq 'aaabbbccc') { print "ok 14\n"; } else { print "not ok 14\n"; } if (/a+b?c+/) {print "not ok 15\n";} else {print "ok 15\n";} $_ = 'aaabccc'; study; if (/a+b?c+/) {print "ok 16\n";} else {print "not ok 16\n";} if (/a*b+c*/) {print "ok 17\n";} else {print "not ok 17\n";} $_ = 'aaaccc'; study; if (/a*b?c*/) {print "ok 18\n";} else {print "not ok 18\n";} if (/a*b+c*/) {print "not ok 19\n";} else {print "ok 19\n";} $_ = 'abcdef'; study; if (/bcd|xyz/) {print "ok 20\n";} else {print "not ok 20\n";} if (/xyz|bcd/) {print "ok 21\n";} else {print "not ok 21\n";} if (m|bc/*d|) {print "ok 22\n";} else {print "not ok 22\n";} if (/^$_$/) {print "ok 23\n";} else {print "not ok 23\n";} $* = 1; # test 3 only tested the optimized version--this one is for real if ("ab\ncd\n" =~ /^cd/) {print "ok 24\n";} else {print "not ok 24\n";}