From a29a6ce36ecf7f324e57ea39c7e5b0eb3a609a24 Mon Sep 17 00:00:00 2001 From: Branden Clark Date: Fri, 26 Jul 2024 17:22:04 -0400 Subject: [PATCH] ignore microsoft.net in system path tester (#27989) --- test/new-e2e/tests/windows/install-test/system_file_tester.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/new-e2e/tests/windows/install-test/system_file_tester.go b/test/new-e2e/tests/windows/install-test/system_file_tester.go index 7ea943aa1f580..4c70d12a993f5 100644 --- a/test/new-e2e/tests/windows/install-test/system_file_tester.go +++ b/test/new-e2e/tests/windows/install-test/system_file_tester.go @@ -18,7 +18,6 @@ func SystemPaths() []string { // Ignoring paths while creating the snapshot reduces the snapshot size by >90% return []string{ `C:\Windows\assembly\`, - `C:\Windows\Microsoft.NET\assembly\`, `C:\windows\AppReadiness\`, `C:\Windows\Temp\`, `C:\Windows\Prefetch\`, @@ -39,6 +38,7 @@ func SystemPaths() []string { `C:\Windows\System32\Tasks\`, `C:\Windows\System32\spp\`, `C:\Windows\SystemTemp\`, + `C:\Windows\Microsoft.NET\`, } }