mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-26 12:32:54 -05:00
tst: winfsp-tests: add --fuse-external option
This commit is contained in:
@@ -34,6 +34,7 @@ int WinFspDiskTests = 1;
|
||||
int WinFspNetTests = 1;
|
||||
|
||||
BOOLEAN OptExternal = FALSE;
|
||||
BOOLEAN OptFuseExternal = FALSE;
|
||||
BOOLEAN OptResilient = FALSE;
|
||||
BOOLEAN OptCaseInsensitiveCmp = FALSE;
|
||||
BOOLEAN OptCaseInsensitive = FALSE;
|
||||
@@ -270,6 +271,15 @@ int main(int argc, char *argv[])
|
||||
WinFspNetTests = 0;
|
||||
rmarg(argv, argc, argi);
|
||||
}
|
||||
else if (0 == strcmp("--fuse-external", a))
|
||||
{
|
||||
OptExternal = TRUE;
|
||||
OptFuseExternal = TRUE;
|
||||
NtfsTests = 1;
|
||||
WinFspDiskTests = 0;
|
||||
WinFspNetTests = 0;
|
||||
rmarg(argv, argc, argi);
|
||||
}
|
||||
else if (0 == strcmp("--resilient", a))
|
||||
{
|
||||
OptResilient = TRUE;
|
||||
|
Reference in New Issue
Block a user