Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BasicThreading.cmd « BasicThreading « Simple « src « tests - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf2e377397b06039f916ac961ebb6da86ecdfdf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@echo off
setlocal

"%1\%2"
set ErrorCode=%ERRORLEVEL%
IF "%ErrorCode%"=="100" (
    echo %~n0: pass
    EXIT /b 0
) ELSE (
    echo %~n0: fail - %ErrorCode%
    EXIT /b 1
)
endlocal