File: test.t

package info (click to toggle)
libproc-syncexec-perl 1.00-2
  • links: PTS
  • area: main
  • in suites: sarge, woody
  • size: 52 kB
  • ctags: 13
  • sloc: perl: 179; makefile: 55
file content (76 lines) | stat: -rw-r--r-- 1,569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!perl -w
use strict;

# $Id: test.t,v 1.3 2000-09-23 22:28:23-04 roderick Exp $
#
# Copyright (c) 2000 Roderick Schertler.  All rights reserved.  This
# program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.

my ($Expect, $Got, $Exit, $Parent_pid);

BEGIN {
    $Expect	= 16;
    $Got	= 0;
    $Exit	= 0;
    $Parent_pid	= $$;

    $| = 1;
    print "1..$Expect\n";
}

sub ok {
    my ($result, @info) = @_;
    $Got++;
    if ($result) {
    	print "ok $Got\n";
    }
    else {
    	$Exit = 1;
	my ($pkg, $file, $line) = caller;
    	print "not ok $Got at $file:$line", @info ? (' # ', @info) : (), "\n";
    }
}

END {
    if ($$ == $Parent_pid) {
	ok $Got+1 == $Expect,
	    "wrong number of tests, got ", 1+$Got, " not $Expect";
	$? = $Exit;
    }
}

use Proc::SyncExec	qw(fork_retry sync_exec sync_open);
use POSIX		qw(EACCES ENOENT);

my ($fh, $pid, $s, $r, @l);

eval { fork_retry or exit };
ok $@ eq '', $@;

$pid = sync_exec 'this better not exist', 23;
ok !defined $pid, $pid;
ok $! == ENOENT, $!;

$pid = sync_exec '/';
ok !defined $pid, $pid;
ok $! == EACCES, $!;

$pid = sync_exec 'true; exit 23';
ok $pid, $!;
$r = waitpid $pid, 0;
ok $r == $pid, $r;
ok $? == 23 * 256, $?;

close READ; # squelch used only once warning
$pid = sync_open *READ, 'this-better-not-exist-either foo|';
ok !defined $pid, $pid;
ok $! == ENOENT, $!;

$pid = sync_open *WRITE, "|$^X -we 'exit <STDIN>'";
ok $pid, $!;
$s = 23;
ok print(WRITE $s), $!;
ok close(WRITE), $!;
ok waitpid($pid, 0) == $pid, $!;
ok $? == $s * 256, $?;