From b04266e0fe5941858baccbf7fcb0eb48fc122008 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Tue, 8 Oct 2019 04:35:28 +0100 Subject: [PATCH] tools: run-tests: add memfs-fuse3 testing --- tools/run-tests.bat | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/tools/run-tests.bat b/tools/run-tests.bat index 29fd5c3b..9c4f0270 100755 --- a/tools/run-tests.bat +++ b/tools/run-tests.bat @@ -78,6 +78,10 @@ set opt_tests=^ ifstest-memfs-x64-disk ^ ifstest-memfs-x86-disk ^ ifstest-memfs-dotnet-disk ^ + sample-memfs-fuse3-x64 ^ + sample-fsx-memfs-fuse3-x64 ^ + sample-memfs-fuse3-x86 ^ + sample-fsx-memfs-fuse3-x86 ^ sample-airfs-x64 ^ sample-airfs-x86 ^ sample-passthrough-x64 ^ @@ -675,6 +679,28 @@ for /F "delims=" %%l in ('call "%ProjRoot%\tools\ifstest.bat" %* /v ^| findstr / if not X!IfsTestFound!==XYES set IfsTestExit=1 exit /b !IfsTestExit! +:sample-memfs-fuse3-x64 +call :__run_sample_fuse_test memfs-fuse3 x64 memfs-fuse3-x64 winfsp-tests-x64 ^ + "-create_fileattr_test -create_readonlydir_test -setfileinfo_test" +if !ERRORLEVEL! neq 0 goto fail +exit /b 0 + +:sample-memfs-fuse3-x86 +call :__run_sample_fuse_test memfs-fuse3 x86 memfs-fuse3-x86 winfsp-tests-x86 ^ + "-create_fileattr_test -create_readonlydir_test -setfileinfo_test" +if !ERRORLEVEL! neq 0 goto fail +exit /b 0 + +:sample-fsx-memfs-fuse3-x64 +call :__run_sample_fsx_fuse_test memfs-fuse3 x64 memfs-fuse3-x64 fsx +if !ERRORLEVEL! neq 0 goto fail +exit /b 0 + +:sample-fsx-memfs-fuse3-x86 +call :__run_sample_fsx_fuse_test memfs-fuse3 x86 memfs-fuse3-x86 fsx +if !ERRORLEVEL! neq 0 goto fail +exit /b 0 + :sample-airfs-x64 call :__run_sample_disk_test airfs x64 airfs-x64 winfsp-tests-x64 NOEXCL if !ERRORLEVEL! neq 0 goto fail