Tweaked some tests so that they are now correct

This commit is contained in:
Neil Brown 2008-02-08 14:03:45 +00:00
parent 64d7b35cfe
commit 5bc57689f8

View File

@ -21,13 +21,13 @@ PROC m()
%FAIL Modulo items in SEQ replicator (unsafe) %FAIL Modulo items in SEQ replicator (unsafe)
SEQ i = 0 FOR 6 SEQ i = 0 FOR 6
PAR PAR
a[(i + 1) REM 4] := 3 a[(i + 1) REM 6] := 3
a[i] := 4 a[0] := 4
%PASS Modulo items in SEQ replicator (safe) %PASS Modulo items in SEQ replicator (safe)
SEQ i = 0 FOR 6 SEQ i = 0 FOR 6
PAR PAR
a[(i + 1) REM 5] := 3 a[(i + 1) REM 7] := 3
a[i] := 4 a[0] := 4
% %