ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/t/10_bugs.t
Revision: 1.2
Committed: Mon Dec 12 20:44:53 2005 UTC (18 years, 6 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-2_5, rel-3_41, rel-3_55, rel-3_51, rel-2_0, rel-2_1, rel-1_9, rel-3_6, rel-3_62, rel-3_63, rel-3_61, rel-1_7, rel-1_6, rel-3_4, rel-3_1, rel-3_5, rel-3_3, rel-3_2, rel-3_0, rel-3_01, rel-3_11, stack_sharing, rel-3_501
Changes since 1.1: +4 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 $|=1;
2     print "1..3\n";
3    
4 root 1.2 # test for known buggy perls
5    
6 root 1.1 use Coro;
7    
8     print "ok 1\n";
9    
10 root 1.2 # debian allocates 0.25mb of local variables in Perl_magic_get,
11     # normal is <<256 bytes.
12 root 1.1 async {
13     print "ok 2\n";
14     $1
15     }->join;
16    
17     print "ok 3\n";