Browse Source

* use gecho on win32

git-svn-id: trunk@1412 -
florian 20 years ago
parent
commit
d1759ff5b1
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/webtbs/tw4038.pp

+ 4 - 0
tests/webtbs/tw4038.pp

@@ -8,7 +8,11 @@ begin
 {$ifdef unix}
   s:='/bin/echo';
 {$else}
+{$ifdef win32}
+  s:='gecho';
+{$else win32}
   s:='echo';
+{$endif win32}
 {$endif}
   writeln(executeprocess(s,'works1 works2 works3'));
   writeln(executeprocess(s,'works1 works2 works3'));