Browse Source

* some problems for go32v2 fixed

florian 25 years ago
parent
commit
13488eb705
1 changed files with 11 additions and 2 deletions
  1. 11 2
      tests/utils/dotest.pp

+ 11 - 2
tests/utils/dotest.pp

@@ -7,7 +7,7 @@ const
 {$ifdef UNIX}
   ExeExt='';
 {$else UNIX}
-  ExeExt:='exe';
+  ExeExt='exe';
 {$endif UNIX}
 
 type
@@ -450,7 +450,10 @@ var
 
 begin
   PPFile:='';
-  CompilerBin:='ppc386';
+  if exeext<>'' then
+    CompilerBin:='ppc386.'+exeext
+  else
+    CompilerBin:='ppc386';
   for i:=1 to paramcount do
    begin
      para:=Paramstr(i);
@@ -551,3 +554,9 @@ begin
   GetArgs;
   RunTest;
 end.
+{
+  $Log$
+  Revision 1.5  2000-12-03 22:59:10  florian
+    * some problems for go32v2 fixed
+
+}