blob: fd630fd7cb9d8134b9f9bb8fa91d6b608cfa68db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# file : tests/process/testscript
# license : MIT; see accompanying LICENSE file
if ($cxx.target.class == 'windows')
cat <<EOI >=test.bat
@echo off
setlocal
goto end
:error
endlocal
exit /b 1
:end
endlocal
EOI
end;
$*
|