IntegrationMSI E2E tests failing: Firewall case sensitivity #8582
Closed
bevanweiss
started this conversation in
WiX Development
Replies: 1 comment
-
The issue was due to the path used to launch the runtests.cmd test file. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I do a fresh build, and run the MSI E2E tests, I'm getting a number of Firewall extension tests failing (~16 of them).
And it all appears to be because in the firewall rule it's expecting an upper case 'C' for the drive letter, but in the actual rule it's ending up with a lower case 'c'
It does seem that the change below in the
VerifyFirewallRule(string name, RuleDetails expected, UniqueCheck unique = null)
method makes the errors go away.But I'm unsure if this still makes the test 'valid'. Are the firewall rules always case insensitive?
I've generally assumed Windows to be case-insensitive. But I know that there are ways to make certain aspects care about case, I'm unsure if firewall rules respect that however (or if they are always case insensitive).
Beta Was this translation helpful? Give feedback.
All reactions