tst: winfsp-tests: disable internal tests when running with --external

This commit is contained in:
Bill Zissimopoulos
2017-05-11 11:17:57 -07:00
parent 5b8ebd6e1d
commit de85070e73
11 changed files with 26 additions and 2 deletions

View File

@ -28,6 +28,7 @@ int NtfsTests = 0;
int WinFspDiskTests = 1;
int WinFspNetTests = 1;
BOOLEAN OptExternal = FALSE;
BOOLEAN OptResilient = FALSE;
BOOLEAN OptCaseInsensitiveCmp = FALSE;
BOOLEAN OptCaseInsensitive = FALSE;
@ -211,6 +212,7 @@ int main(int argc, char *argv[])
{
if (0 == strcmp("--ntfs", a) || 0 == strcmp("--external", a))
{
OptExternal = TRUE;
NtfsTests = 1;
WinFspDiskTests = 0;
WinFspNetTests = 0;