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
|
BEGIN { $| = 1; print "1..7\n"; }
use Coro;
use Coro::State;
print "ok 1\n";
async {
warn "-";
cede;
warn "-";
local $SIG{__WARN__} = sub { print "ok 7\n" };
{
local $SIG{__WARN__} = sub { print "ok 5\n" };
cede;
warn "-";
}
cede;
warn "-";
cede;
};
async {
$Coro::State::WARNHOOK = sub { print "ok 3\n" };
local $SIG{__WARN__} = sub { print "ok 6\n" };
{
local $SIG{__WARN__} = sub { print "ok 4\n" };
cede;
warn "-";
}
cede;
warn "-";
};
$Coro::State::WARNHOOK = sub { print "ok 2\n" };
cede;
cede;
cede;
cede;
|