cvsuser     04/05/26 07:27:56

  Modified:    t/library sort.t
  Log:
  do not use the obsolete sort.imc for testing; use the sort function directly
  
  Revision  Changes    Path
  1.2       +20 -20    parrot/t/library/sort.t
  
  Index: sort.t
  ===================================================================
  RCS file: /cvs/public/parrot/t/library/sort.t,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- sort.t    19 May 2004 20:41:58 -0000      1.1
  +++ sort.t    26 May 2004 14:27:56 -0000      1.2
  @@ -1,10 +1,10 @@
   #! perl -w
   # Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
  -# $Id: sort.t,v 1.1 2004/05/19 20:41:58 jrieks Exp $
  +# $Id: sort.t,v 1.2 2004/05/26 14:27:56 jrieks Exp $
   
   =head1 NAME
   
  -t/pmc/sort.t - Sorting
  +t/library/sort.t - Sorting
   
   =head1 SYNOPSIS
   
  @@ -40,7 +40,7 @@
       push array, 8
       push array, 9
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -51,7 +51,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   0
   1
  @@ -85,7 +85,7 @@
       push array, 1
       push array, 0
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -96,7 +96,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   0
   1
  @@ -130,7 +130,7 @@
       push array, 9
       push array, 0
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -141,7 +141,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   0
   1
  @@ -173,7 +173,7 @@
       push array, "golf"
       push array, "hotel"
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -184,7 +184,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   alpha
   bravo
  @@ -214,7 +214,7 @@
       push array, "bravo"
       push array, "echo"
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -225,7 +225,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   alpha
   bravo
  @@ -267,7 +267,7 @@
       push array, 0
       push array, "echo"
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -278,7 +278,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   0
   0
  @@ -316,7 +316,7 @@
       push array, "h"
       push array, "y"
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -327,7 +327,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   h
   w
  @@ -360,7 +360,7 @@
       set tmp, "y"
       push array, tmp
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -371,7 +371,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   h
   w
  @@ -397,7 +397,7 @@
       push array, "bbbbbb"
       push array, "aaaa1"
   
  -    _sort( array )
  +    simple( array )
       i = 0
       j = array
   LOOP:
  @@ -408,7 +408,7 @@
       if i < j goto LOOP
       end
   .end
  -.include "library/sort.imc"
  +.include "library/Data/Sort.imc"
   CODE
   aaaa1
   aaaa2
  
  
  

Reply via email to