Tweaked some tests so that they are now correct
This commit is contained in:
parent
64d7b35cfe
commit
5bc57689f8
|
@ -21,13 +21,13 @@ PROC m()
|
|||
%FAIL Modulo items in SEQ replicator (unsafe)
|
||||
SEQ i = 0 FOR 6
|
||||
PAR
|
||||
a[(i + 1) REM 4] := 3
|
||||
a[i] := 4
|
||||
a[(i + 1) REM 6] := 3
|
||||
a[0] := 4
|
||||
|
||||
%PASS Modulo items in SEQ replicator (safe)
|
||||
SEQ i = 0 FOR 6
|
||||
PAR
|
||||
a[(i + 1) REM 5] := 3
|
||||
a[i] := 4
|
||||
a[(i + 1) REM 7] := 3
|
||||
a[0] := 4
|
||||
|
||||
%
|
||||
|
|
Loading…
Reference in New Issue
Block a user