Changeset 82 for trunk/orca/tests
- Timestamp:
- 03/08/06 18:01:08 (3 years ago)
- Location:
- trunk/orca/tests
- Files:
-
- 2 modified
-
run_test (modified) (1 diff)
-
working/find.r (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/tests/run_test
r46 r82 2 2 3 3 INTERPRETER=../orca 4 REBOL=rebol4 #REBOL=rebol 5 5 #REBOL=./rebol 6 #REBOL=./rebol_view_1.2.476 REBOL=./rebol_view_1.2.47 7 7 8 8 #DIFF='diff -w --ignore-blank-lines' -
trunk/orca/tests/working/find.r
r65 r82 5 5 x: find [%t11.ext %t1.ext] %t1.EXT 6 6 print ["test1 - block/string case" type? x x] 7 8 9 10 s: [1 2 3 4] 11 print ["skip1" find/skip s 1 2] 12 print ["skip2" find/skip s 2 2] 13 print ["skip3" find/skip s 3 2] 14 print ["skip4" find/skip s 4 2]
