Ticket #200: catchall.diff
File catchall.diff, 7.7 KB (added by coke, 13 years ago) |
---|
-
examples/sdl/minesweeper/field.pir
26 26 This is an implementation of a Minesweeper game field. 27 27 It draws the field onto a SDL surface. 28 28 29 =head1 BUGS 30 31 WARNING: This file doesn't currently compile. 32 29 33 =head1 METHODS 30 34 31 35 An Mines::Field object has the following methods: -
examples/sdl/tetris/board.pir
13 13 # let the current block of the board fall down fast 14 14 board."fall"() 15 15 16 =head1 BUGS 17 18 WARNING: This file doesn't currently compile. 19 16 20 =cut 17 21 18 22 .include "library/dumper.pir" -
examples/sdl/tetris/blocks.pir
2 2 3 3 blocks.pir - tetris block classes 4 4 5 =head1 BUGS 6 7 WARNING: This file doesn't currently compile. 8 5 9 =cut 6 10 7 11 .namespace ["Tetris::Blocks"] -
examples/sdl/tetris/eventhandler.pir
2 2 3 3 eventhandler.pir - a tetris event handler class 4 4 5 =head1 BUGS 6 7 WARNING: This file doesn't currently compile. 8 5 9 =cut 6 10 7 11 .namespace ["Tetris::EventHandler"] -
examples/sdl/tetris/app.pir
23 23 This is the main tetris class. Neither has 24 24 it parent classes nor is it subclassed. 25 25 26 =head1 BUGS 27 28 WARNING: This file doesn't currently compile. 29 26 30 =cut 27 31 28 32 -
examples/pasm/nanoforth2.pasm
16 16 : x compile single-letter word x 17 17 ; end compile 18 18 19 =head1 BUGS 20 21 WARNING: This file doesn't currently compile. 22 19 23 =cut 20 24 21 25 .macro core(op, label) -
examples/pasm/xml_parser.pasm
65 65 99 Data associated with this element 66 66 1000 (no data) sentinel for the bottom of the stack 67 67 68 =head1 BUGS 69 70 WARNING: This file doesn't currently compile. 71 68 72 =cut 69 73 70 74 # A functions-first kinda guy -
examples/pasm/nanoforth.pasm
19 19 to branch into different code segments, or better it works only if bounds 20 20 checking is disabled. 21 21 22 =head1 BUGS 23 24 WARNING: This file doesn't currently compile. 25 22 26 =cut 23 27 24 28 .macro core(op, label) -
examples/past/blocktype_immediate.pir
26 26 27 27 F<docs/pdds/pdd26_ast.pod> 28 28 29 =head1 BUGS 30 31 WARNING: This file doesn't currently compile. 32 29 33 =cut 30 34 31 35 .namespace [] -
examples/io/echo_client.pir
20 20 Shortly we will create an echo server in Parrot and combine these 2 into 21 21 a test suite. 22 22 23 =head1 BUGS 24 25 WARNING: This file doesn't currently compile. 26 23 27 =cut 24 28 25 29 .sub _main -
examples/io/http.pir
17 17 set C<PARROT_NET_DEVEL> to 1 in F<io/io_private.h> and rebuld Parrot or 18 18 the network layer won't exist. 19 19 20 =head1 BUGS 21 22 WARNING: This file doesn't currently compile. 23 20 24 =cut 21 25 22 26 .sub example :main -
examples/io/net_smtp.pasm
18 18 set C<PARROT_NET_DEVEL> to 1 in F<io/io_private.h> and rebuld Parrot or 19 19 the network layer won't exist. 20 20 21 =head1 BUGS 22 23 WARNING: This file doesn't currently compile. 24 21 25 =cut 22 26 23 27 print "Creating socket.\n" -
examples/io/httpd.pir
82 82 Original author is Markus Amsler - <markus.amsler@oribi.org> 83 83 The code was heavily hacked by bernhard and leo. 84 84 85 =head1 BUGS 86 87 WARNING: This file doesn't currently compile. 88 85 89 =cut 86 90 87 91 .const string CRLF = "\r\n" -
examples/nci/sdl_blue_rectangle.pir
1 1 # $Id$ 2 2 3 4 =head1 BUGS 5 6 WARNING: This file doesn't currently compile. 7 8 =cut 9 3 10 .sub _main :main 4 11 _init() 5 12 _MAIN() -
examples/nci/ls.pir
9 9 10 10 List the content of the directory 'docs'. 11 11 12 =head1 BUGS 13 14 WARNING: This file doesn't currently compile. 15 12 16 =cut 13 17 14 18 .sub _main :main -
examples/nci/xlibtest.pir
15 15 16 16 Press Escape key to exit. 17 17 18 =head1 BUGS 19 20 WARNING: This file doesn't currently compile. 21 18 22 =cut 19 23 20 24 -
examples/pge/simple.pir
1 2 =head1 BUGS 3 4 WARNING: This file doesn't currently compile. 5 6 =cut 7 1 8 .namespace [ "Simple" ] 2 9 3 10 .sub "__onload" -
examples/pge/benchmarks/ambs1/main.pir
1 2 =head1 BUGS 3 4 WARNING: This file doesn't currently compile. 5 6 =cut 7 1 8 .sub main :main 2 9 load_bytecode 'PGE.pbc' 3 10 load_bytecode 'dumper.pbc' -
t/examples/catchall.t
10 10 use File::Spec qw(); 11 11 use Test::More; 12 12 use Parrot::Config qw(%PConfig); 13 use Parrot::Test; 13 14 14 15 =head1 NAME 15 16 … … 37 38 38 39 plan tests => scalar keys %files; 39 40 41 # All these must be fixed before 1.0! 42 my $todo_check = qr/WARNING: This file doesn't currently compile\./m; 43 40 44 foreach my $file (sort keys %files) { 41 my $cmd = File::Spec->curdir() . $PConfig{slash} . 45 46 my $contents = slurp_file($file); 47 48 my $cmd = File::Spec->curdir() . $PConfig{slash} . 42 49 $PConfig{test_prog} . " -o " . File::Spec->devnull() . " " . 43 50 $file; 44 51 TODO: { 52 local $TODO = "documented as broken" if ($contents =~ $todo_check); 45 53 is(system($cmd), 0 , $file); 54 } 46 55 } 47 56 48 57 # Local Variables: