pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-03-16
2003-03-16 17:21:36 by Henrik Grubbström (Grubba) <grubba@grubba.org>
fb23d27ef41ea905a4b6b781e69c7807b0395588 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Missed a few...
Rev: src/testsuite.in:1.621
1:
-
test_true([["$Id: testsuite.in,v 1.
620
2003/03/16 17:
04
:
27
grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
621
2003/03/16 17:
21
:
36
grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
9087:
proc->kill(signum("KILL")); return sprintf("Unexpected signal:%d (expected %d)", sig, signum("TERM")); }
-
proc->cont();
+
proc->cont();
// Ignore it...
// Check that we can make harmless signals deadly.
-
proc->kill(signum("CONT"));
// SIGCONT
+
proc->kill(signum("CONT"));
code = proc->wait(); if (code != -2) { proc->kill(signum("KILL"));
9098:
} sig = proc->last_signal(); if (sig != signum("CONT")) {
-
proc->kill(
9
);
+
proc->kill(
signum("KILL"
)
)
;
return sprintf("Unexpected signal:%d (expected %d)", sig, signum("CONT")); }
-
proc->cont(
9
);
// Make it a SIGKILL
+
proc->cont(
signum("KILL"
)
)
; // Make it a SIGKILL
code = proc->wait(); if (code != -1) {