cvsuser     03/10/05 03:05:29

  Modified:    .        MANIFEST
               config/gen/makefiles root.in
  Added:       t/op     00ff-dos.t 00ff-unix.t
  Log:
  file format tests; clean imc files too
  
  Revision  Changes    Path
  1.447     +14 -12    parrot/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /cvs/public/parrot/MANIFEST,v
  retrieving revision 1.446
  retrieving revision 1.447
  diff -u -w -r1.446 -r1.447
  --- MANIFEST  4 Oct 2003 16:00:25 -0000       1.446
  +++ MANIFEST  5 Oct 2003 10:05:12 -0000       1.447
  @@ -148,8 +148,8 @@
   config/init/hints/aix.pl                          []
   config/init/hints/cygwin.pl                       []
   config/init/hints/darwin.pl                       []
  -config/init/hints/mswin32.pl                      []
   config/init/hints/linux.pl                        []
  +config/init/hints/mswin32.pl                      []
   config/init/hints/os2.pl                          []
   config/init/hints/vms.pl                          []
   config/init/manifest.pl                           []
  @@ -234,7 +234,6 @@
   encodings/utf16.c                                 []
   encodings/utf32.c                                 []
   encodings/utf8.c                                  []
  -extend.c                                       []
   events.c                                          []
   examples/assembly/99beer.pasm                     [main]doc
   examples/assembly/Makefile                        [main]doc
  @@ -245,10 +244,10 @@
   examples/assembly/euclid.pasm                     [main]doc
   examples/assembly/fact.pasm                       [main]doc
   examples/assembly/hanoi.pasm                      [main]doc
  +examples/assembly/hello-dwim.imc                  [main]doc
   examples/assembly/io1.pasm                        [main]doc
   examples/assembly/io2.pasm                        [main]doc
   examples/assembly/jump.pasm                       [main]doc
  -examples/assembly/hello-dwim.imc                  [main]doc
   examples/assembly/lexical.pasm                    [main]doc
   examples/assembly/lexical2.pasm                   [main]doc
   examples/assembly/lexical3.pasm                   [main]doc
  @@ -312,6 +311,7 @@
   exec_save.c                                       []
   exec_start.c                                      []
   exit.c                                            []
  +extend.c                                       []
   fingerprint_c.pl                                  []
   global_setup.c                                    []
   hash.c                                            []
  @@ -1992,26 +1992,26 @@
   languages/tcl/examples/append.tcl                 [tcl]
   languages/tcl/examples/break.tcl                  [tcl]
   languages/tcl/examples/exit.tcl                   [tcl]
  +languages/tcl/examples/fact.tcl                   [tcl]
   languages/tcl/examples/hello.tcl                  [tcl]
   languages/tcl/examples/incr.tcl                   [tcl]
  +languages/tcl/examples/koohii.tcl                 [tcl]
   languages/tcl/examples/set.tcl                    [tcl]
   languages/tcl/examples/test.tcl                   [tcl]
  -languages/tcl/examples/fact.tcl                   [tcl]
  -languages/tcl/examples/koohii.tcl                 [tcl]
   languages/tcl/lib/backslash_newline_subst.imc     [tcl]
   languages/tcl/lib/backslash_subst.imc             [tcl]
  -languages/tcl/lib/match_close.imc                 [tcl]
  -languages/tcl/lib/parse.imc                       [tcl]
  -languages/tcl/lib/var_subst.imc                   [tcl]
  -languages/tcl/lib/macros/debug.imc                [tcl]
  -languages/tcl/lib/macros/is_space.imc             [tcl]
  -languages/tcl/lib/macros/substitution.imc         [tcl]
   languages/tcl/lib/commands/append.imc             [tcl]
   languages/tcl/lib/commands/exit.imc               [tcl]
   languages/tcl/lib/commands/incr.imc               [tcl]
   languages/tcl/lib/commands/puts.imc               [tcl]
   languages/tcl/lib/commands/rename.imc             [tcl]
   languages/tcl/lib/commands/set.imc                [tcl]
  +languages/tcl/lib/macros/debug.imc                [tcl]
  +languages/tcl/lib/macros/is_space.imc             [tcl]
  +languages/tcl/lib/macros/substitution.imc         [tcl]
  +languages/tcl/lib/match_close.imc                 [tcl]
  +languages/tcl/lib/parse.imc                       [tcl]
  +languages/tcl/lib/var_subst.imc                   [tcl]
   languages/tcl/t/README                            [tcl]
   languages/tcl/t/append.t                          [tcl]
   languages/tcl/t/backslash.t                       [tcl]
  @@ -2111,8 +2111,8 @@
   resources.c                                       []
   runops_cores.c                                    []
   runtime/parrot/chartypes/8859-1.TXT               []
  -runtime/parrot/include/README                     [main]doc
   runtime/parrot/include/DWIM.imc                   [main]doc
  +runtime/parrot/include/README                     [main]doc
   rx.c                                              []
   rx.ops                                            []
   rxstacks.c                                        []
  @@ -2131,6 +2131,8 @@
   t/native_pbc/number_1.pbc                         []
   t/native_pbc/number_2.pbc                         []
   t/native_pbc/number_3.pbc                         []
  +t/op/00ff-dos.t                                   []
  +t/op/00ff-unix.t                                  []
   t/op/arithmetics.t                                []
   t/op/basic.t                                      []
   t/op/bitwise.t                                    []
  
  
  
  1.1                  parrot/t/op/00ff-dos.t
  
  Index: 00ff-dos.t
  ===================================================================
  #! perl -w
  use strict;
  
  use Parrot::Test tests => 1;
  
  output_is(<<'CODE', <<'OUT', "fileformat unix");
      print "ok\n"
      end
  CODE
  ok
  OUT
  
  
  
  1.1                  parrot/t/op/00ff-unix.t
  
  Index: 00ff-unix.t
  ===================================================================
  #! perl -w
  use strict;
  
  use Parrot::Test tests => 1;
  
  output_is(<<'CODE', <<'OUT', "fileformat unix");
      print "ok\n"
      end
  CODE
  ok
  OUT
  
  
  
  1.136     +2 -1      parrot/config/gen/makefiles/root.in
  
  Index: root.in
  ===================================================================
  RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
  retrieving revision 1.135
  retrieving revision 1.136
  diff -u -w -r1.135 -r1.136
  --- root.in   3 Oct 2003 14:47:06 -0000       1.135
  +++ root.in   5 Oct 2003 10:05:28 -0000       1.136
  @@ -724,7 +724,8 @@
        $(RM_F) t/op/*.pasm t/op/*.pbc t/op/*.out t/op/*.o t/op/*.stabs.s \
                t/pmc/*.pasm t/pmc/*.pbc t/pmc/*.out t/pmc/*.o t/pmc/*.stabs.s \
                t/stress/*.pasm t/stress/*.pbc t/stress/*.out t/stress/*.o 
t/stress/*.stabs.s \
  -             t/src/*_*
  +             t/src/*_* \
  +             t/op/*.imc t/pmc/*.imc
   
   realclean : clean
        $(RM_F) $(STICKY_FILES)
  
  
  

Reply via email to