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

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

call emrun --browser=firefox --browser_args=-headless --safe_firefox_profile --silence_timeout 10 "%1\%2" 

IF "%errorlevel%"=="100" (
    echo %~n0: Pass
    EXIT /b 0
) ELSE (
    echo %~n0: fail - %ErrorLevel%
    EXIT /b 1
)
endlocal