From a197b9996027adadb20f8cb7728ed73708622e77 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Mon, 25 May 2020 11:49:36 -0700 Subject: [PATCH] tst: winfsp-tests: disable query_winfsp_tests over shares --- tst/winfsp-tests/info-test.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tst/winfsp-tests/info-test.c b/tst/winfsp-tests/info-test.c index 0d6b893e..9d3ae0f9 100644 --- a/tst/winfsp-tests/info-test.c +++ b/tst/winfsp-tests/info-test.c @@ -1959,6 +1959,9 @@ void query_winfsp_dotest(ULONG Flags, PWSTR Prefix, ULONG FileInfoTimeout, BOOLE void query_winfsp_test(void) { + if (OptShareName) + return; + if (NtfsTests) { WCHAR DirBuf[MAX_PATH], DriveBuf[3]; @@ -1996,5 +1999,6 @@ void info_tests(void) TEST(rename_pid_test); TEST(getvolinfo_test); TEST(setvolinfo_test); - TEST(query_winfsp_test); + if (!OptShareName) + TEST(query_winfsp_test); }