15 lines
257 B
Text
15 lines
257 B
Text
|
# -*- perl -*-
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use tests::tests;
|
||
|
check_expected ([<<'EOF']);
|
||
|
(wait-twice) begin
|
||
|
(child-simple) run
|
||
|
child-simple: exit(81)
|
||
|
(wait-twice) wait(exec()) = 81
|
||
|
(wait-twice) wait(exec()) = -1
|
||
|
(wait-twice) end
|
||
|
wait-twice: exit(0)
|
||
|
EOF
|
||
|
pass;
|