File: exec_gui_tests.bat

package info (click to toggle)
sight 25.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,180 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (14 lines) | stat: -rwxr-xr-x 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
setlocal enabledelayedexpansion

cd %~dp0
set ok=0

for /f %%t in ('%1 --list') do (
    call %1 %%t
    if !errorlevel! neq 0 set ok=!errorlevel!
)

exit !ok!

endlocal