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

SharedLibrary.cmd « SharedLibrary « Simple « src « tests - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2167b8ecfe3bc54c7d2dec49aaec682134534857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
@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