add and change NEWS for 2.8.0 release
[parrot.git] / t / stress / gc.t
blobd513d74205a7e509b293d0b7be14241d81cfd3ca
1 #! perl
2 # Copyright (C) 2001-2003, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/stress/gc.t - Garbage Collection
9 =head1 SYNOPSIS
11     % perl -Ilib t/stress/gc.t
13 =head1 DESCRIPTION
15 Tests garbage collection.
17 =cut
19 use strict;
20 use warnings;
22 use lib qw(lib . ../lib ../../lib);
23 use Parrot::Test tests => 1;
24 use Test::More;
25 use Parrot::PMC qw(%pmc_types);
27 pasm_output_is( <<'CODE', <<'OUTPUT', "arraystress" );
28     print "starting\n"
29     new P0, 'Integer'
30     print "ending\n"
31     end
32 CODE
33 starting
34 ending
35 OUTPUT
39 # Local Variables:
40 #   mode: cperl
41 #   cperl-indent-level: 4
42 #   fill-column: 100
43 # End:
44 # vim: expandtab shiftwidth=4: