Selaa lähdekoodia

* made exit codes unique

git-svn-id: trunk@47860 -
Jonas Maebe 4 vuotta sitten
vanhempi
commit
6d03f2807a
1 muutettua tiedostoa jossa 6 lisäystä ja 6 poistoa
  1. 6 6
      tests/test/tprec8.pp

+ 6 - 6
tests/test/tprec8.pp

@@ -40,19 +40,19 @@ begin
     halt(1);
     halt(1);
   r.g := 5;
   r.g := 5;
   if (r.g <> 5) then
   if (r.g <> 5) then
-    halt(1);
+    halt(2);
   r.h := 65535;
   r.h := 65535;
   if (r.h <> 65535) then
   if (r.h <> 65535) then
-    halt(1);
+    halt(3);
   r.k := true;
   r.k := true;
   if not (r.k) then
   if not (r.k) then
-    halt(1);
+    halt(4);
   r.j := false;
   r.j := false;
   if r.j then
   if r.j then
-    halt(1);
+    halt(5);
   if b <> 0 then
   if b <> 0 then
-    halt(1);
+    halt(6);
   if sizeof(tr) <> 13 then
   if sizeof(tr) <> 13 then
-    halt(2);
+    halt(7);
 end.
 end.