浏览代码

* some problems for go32v2 fixed

florian 25 年之前
父节点
当前提交
13488eb705
共有 1 个文件被更改,包括 11 次插入2 次删除
  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
+
+}