[Windows] win2022: enable use of test-signed code (#4098)

This commit is contained in:
Aleksandr Chebotov
2021-09-16 15:58:40 +03:00
committed by GitHub
parent 46cf736fbe
commit 5a73d60641
2 changed files with 15 additions and 1 deletions

View File

@@ -50,3 +50,9 @@ Describe "GDIProcessHandleQuota" {
(Get-ItemProperty $regPath32).GDIProcessHandleQuota | Should -BeExactly 20000
}
}
Describe "Test Signed Drivers" -Skip:(-not (Test-IsWin22)) {
It "bcdedit testsigning should be Yes"{
"$(bcdedit)" | Should -Match "testsigning\s+Yes"
}
}