From 4b6d9b70d7b5a8c22ada5d17d22dcd657f98c272 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 18 Nov 2021 10:34:48 +0000 Subject: [PATCH] tools: run-tests: FUSE sample testing - exclude reparse_symlink* on AppVeyor --- tools/run-tests.bat | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/tools/run-tests.bat b/tools/run-tests.bat index c23bf325..b4afe92f 100755 --- a/tools/run-tests.bat +++ b/tools/run-tests.bat @@ -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