projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
429b3af
)
undo change#1379 (order of tests *is* significant)
Gurusamy Sarathy [Fri, 10 Jul 1998 03:24:45 +0000 (
03:24
+0000)]
p4raw-link: @1379 on //depot/perl:
5e8184afa853952a09122e5fa8842a8d0c217820
p4raw-id: //depot/perl@1401
t/lib/posix.t
patch
|
blob
|
blame
|
history
diff --git
a/t/lib/posix.t
b/t/lib/posix.t
index
b71cb43
..
c071c3b
100755
(executable)
--- a/
t/lib/posix.t
+++ b/
t/lib/posix.t
@@
-53,16
+53,13
@@
print "ok 11\n";
sub SigHUP {
print "ok 8\n";
- $n = 8;
kill 'INT', $$;
sleep 2;
- ++$n;
- print "ok $n\n";
+ print "ok 9\n";
}
sub SigINT {
- ++$n;
- print "ok $n\n";
+ print "ok 10\n";
}
}