mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-15 08:12:45 -05:00
case-insensitivity testing
This commit is contained in:
@ -155,7 +155,7 @@
|
|||||||
<RegistryValue
|
<RegistryValue
|
||||||
Type="string"
|
Type="string"
|
||||||
Name="CommandLine"
|
Name="CommandLine"
|
||||||
Value="-u %1 -m %2" />
|
Value="-i -u %1 -m %2" />
|
||||||
<RegistryValue
|
<RegistryValue
|
||||||
Type="string"
|
Type="string"
|
||||||
Name="Security"
|
Name="Security"
|
||||||
@ -181,7 +181,7 @@
|
|||||||
<RegistryValue
|
<RegistryValue
|
||||||
Type="string"
|
Type="string"
|
||||||
Name="CommandLine"
|
Name="CommandLine"
|
||||||
Value="-u %1 -m %2" />
|
Value="-i -u %1 -m %2" />
|
||||||
<RegistryValue
|
<RegistryValue
|
||||||
Type="string"
|
Type="string"
|
||||||
Name="Security"
|
Name="Security"
|
||||||
|
@ -26,7 +26,7 @@ cd P: >nul 2>nul || (echo === Unable to find drive P: >&2 & goto fail)
|
|||||||
|
|
||||||
set testpass=0
|
set testpass=0
|
||||||
set testfail=0
|
set testfail=0
|
||||||
for %%f in (winfsp-tests-x64 winfsp-tests-x86 :fsx-memfs-x64 :fsx-memfs-x86 :winfstest-memfs-x64 :winfstest-memfs-x86) do (
|
for %%f in (:winfsp-tests-x64 :winfsp-tests-x86 :fsx-memfs-x64 :fsx-memfs-x86 :winfstest-memfs-x64 :winfstest-memfs-x86) do (
|
||||||
echo === Running %%f
|
echo === Running %%f
|
||||||
|
|
||||||
if defined APPVEYOR (
|
if defined APPVEYOR (
|
||||||
@ -71,6 +71,24 @@ exit /b 0
|
|||||||
:fail
|
:fail
|
||||||
exit /b 1
|
exit /b 1
|
||||||
|
|
||||||
|
:winfsp-tests-x64
|
||||||
|
echo winfsp-tests-x64
|
||||||
|
winfsp-tests-x64
|
||||||
|
if errorlevel 1 goto fail
|
||||||
|
echo winfsp-tests-x64 --case-randomize
|
||||||
|
winfsp-tests-x64 --case-randomize
|
||||||
|
if errorlevel 1 goto fail
|
||||||
|
exit /b 0
|
||||||
|
|
||||||
|
:winfsp-tests-x86
|
||||||
|
echo winfsp-tests-x86
|
||||||
|
winfsp-tests-x86
|
||||||
|
if errorlevel 1 goto fail
|
||||||
|
echo winfsp-tests-x86 --case-randomize
|
||||||
|
winfsp-tests-x86 --case-randomize
|
||||||
|
if errorlevel 1 goto fail
|
||||||
|
exit /b 0
|
||||||
|
|
||||||
:fsx-memfs-x64
|
:fsx-memfs-x64
|
||||||
M:
|
M:
|
||||||
"%ProjRoot%\ext\test\fstools\src\fsx\fsx.exe" -N 5000 test xxxxxx
|
"%ProjRoot%\ext\test\fstools\src\fsx\fsx.exe" -N 5000 test xxxxxx
|
||||||
|
Reference in New Issue
Block a user