Changeset 82 for trunk/orca/tests

Show
Ignore:
Timestamp:
03/08/06 18:01:08 (3 years ago)
Author:
krobillard
Message:

find/skip now works on blocks.

Location:
trunk/orca/tests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/tests/run_test

    r46 r82  
    22 
    33INTERPRETER=../orca 
    4 REBOL=rebol 
     4#REBOL=rebol 
    55#REBOL=./rebol 
    6 #REBOL=./rebol_view_1.2.47 
     6REBOL=./rebol_view_1.2.47 
    77 
    88#DIFF='diff -w --ignore-blank-lines' 
  • trunk/orca/tests/working/find.r

    r65 r82  
    55x: find [%t11.ext  %t1.ext] %t1.EXT 
    66print ["test1 - block/string case" type? x x] 
     7 
     8 
     9 
     10s: [1 2 3 4] 
     11print ["skip1" find/skip s 1 2] 
     12print ["skip2" find/skip s 2 2] 
     13print ["skip3" find/skip s 3 2] 
     14print ["skip4" find/skip s 4 2]