blob: 6d5384319a2c91078a397aa83fd8d1f0d75dcc9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- 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;
|