mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
15 lines
210 B
Batchfile
15 lines
210 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
pushd %~dp0\..
|
|
|
|
:: Endgame tests in AMD
|
|
call .\scripts\test.bat --runGlob **\*.releaseTest.js %*
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
|
|
rmdir /s /q %VSCODEUSERDATADIR%
|
|
|
|
popd
|
|
|
|
endlocal
|