File: 01_process.t

package info (click to toggle)
libcoro-perl 6.570-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,144 kB
  • sloc: ansic: 2,560; perl: 2,122; makefile: 14
file content (74 lines) | stat: -rw-r--r-- 864 bytes parent folder | download | duplicates (8)
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
$|=1;
print "1..13\n";

use Coro;

async {
   print "ok 2\n";
};

print "ok 1\n";
cede;
print "ok 3\n";

my $c1 = async {
   print "ok 5\n";
   cede;
   print "not ok 8\n";#d#
};

print $c1->ready ? "not " : "", "ok 4\n";

cede;

print "ok 6\n";

$c1->on_destroy (sub {
   print "ok 7\n";
});

$c1->cancel;

print "ok 8\n";

cede; cede;

print "ok 9\n";

{
   my $as1 = async {
      print "not ok 10\n";
   };

   my $as2 = async {
      print "ok 10\n";
      $as1->cancel;
   };

   $as2->cede_to;
}

{
   my $as1 = async {
      print "not ok 11\n";
   };

   my $as2 = async {
      print "ok 11\n";
      $as1->cancel;
      cede;
      print "ok 12\n";
      $Coro::main->ready;
      $Coro::main->throw ("exit");
   };

   local $SIG{__DIE__} = sub {
      print "ok 13\n";
      exit if $@ eq "exit";
   };

   $as2->schedule_to;
}

print "not ok 12\n";