You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DynamicDependencies: Change IsElevated check from FAIL_FAST to RETURN(ErrorNotSupported) (#1563)
* Fixed powershell command line to not rely on system configuration
* Fix misspelled name
* Can't check for MddTryCreate...() failure due to elevation in a test method as the setup fixed called MddBootstrapInitialize and would have failed if elevated, or if different user context the setup fix wouldn't be right for it. That's OK. Bootstrap has an explicit test for the expected error so we're good
* Tweaked test execution for GetCurrentPackageInfoTests to avoid false errors. Lacking this if you ran all the dyndep tests some of the others could color the process space distorting these tests behavior/results
* Restored BootstrapTests to IsolationLevel=Method and moved the elevated tests to a separate class
* Refactored Bootstrap tests fixtures for sharing/reuse. More to come
* Cleanup up bootstrap tests fixtures' redundancy
* Missed the help call; thanks Rohan!
Copy file name to clipboardExpand all lines: dev/DynamicDependency/API/MsixDynamicDependency.cpp
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -12,10 +12,11 @@
12
12
namespaceMddCore
13
13
{
14
14
// Temporary check to prevent accidental misuse and false bug reports until we address Issue #567 https://github.com/microsoft/WindowsAppSDK/issues/567
// Temporary check to prevent accidental misuse and false bug reports until we address Issue #567 https://github.com/microsoft/WindowsAppSdk/issues/567
0 commit comments