tools: run-tests: FUSE sample testing

- exclude reparse_symlink* on AppVeyor
This commit is contained in:
Bill Zissimopoulos 2021-11-18 10:34:48 +00:00
parent 1f68eb0f3d
commit 4b6d9b70d7
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3

View File

@ -911,8 +911,15 @@ net use | findstr L:
pushd >nul
cd L: >nul 2>nul || (echo Unable to find drive L: >&2 & goto fail)
L:
"%ProjRoot%\build\VStudio\build\%Configuration%\%4.exe" ^
--fuse-external --resilient --case-insensitive-cmp --share-prefix="\%1\%TMP::=$%\%1\test" %~5
REM Exclude reparse_symlink* tests as they do not pass on AppVeyor VS2015. They do pass locally.
if defined APPVEYOR (
"%ProjRoot%\build\VStudio\build\%Configuration%\%4.exe" ^
--fuse-external --resilient --case-insensitive-cmp --share-prefix="\%1\%TMP::=$%\%1\test" %~5 ^
-reparse_symlink*
) else (
"%ProjRoot%\build\VStudio\build\%Configuration%\%4.exe" ^
--fuse-external --resilient --case-insensitive-cmp --share-prefix="\%1\%TMP::=$%\%1\test" %~5
)
if !ERRORLEVEL! neq 0 set RunSampleTestExit=1
popd
echo net use L: /delete