File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -708,7 +708,7 @@ RUN(NAME test_vars_01 LABELS cpython llvm)
708708RUN(NAME test_version LABELS cpython llvm)
709709RUN(NAME logical_binop1 LABELS cpython llvm)
710710RUN(NAME vec_01 LABELS cpython llvm c NOFAST)
711- RUN(NAME test_str_comparison LABELS cpython llvm c)
711+ RUN(NAME test_str_comparison LABELS cpython llvm c wasm )
712712RUN(NAME test_bit_length LABELS cpython llvm c)
713713RUN(NAME str_to_list_cast LABELS cpython llvm c)
714714RUN(NAME cast_01 LABELS cpython llvm c)
Original file line number Diff line number Diff line change @@ -5,18 +5,18 @@ def f():
55 assert s1 <= s2
66 assert s1 >= s2
77 s1 = "abcde"
8- assert s1 >= s2
8+ assert s1 >= s2
99 assert s1 > s2
1010 s1 = "abc"
11- assert s1 < s2
11+ assert s1 < s2
1212 assert s1 <= s2
1313 s1 = "Abcd"
1414 s2 = "abcd"
15- assert s1 < s2
15+ assert s1 < s2
1616 s1 = "orange"
1717 s2 = "apple"
18- assert s1 >= s2
19- assert s1 > s2
18+ assert s1 >= s2
19+ assert s1 > s2
2020 s1 = "albatross"
2121 s2 = "albany"
2222 assert s1 >= s2
@@ -28,9 +28,11 @@ def f():
2828 assert s1 < s2
2929 assert s1 != s2
3030 s1 = "Zebra"
31- s2 = "ant"
31+ s2 = "ant"
3232 assert s1 <= s2
3333 assert s1 < s2
3434 assert s1 != s2
3535
36+ print ("Ok" )
37+
3638f ()
You can’t perform that action at this time.
0 commit comments