diff options
author | Bevan Weiss <bevan.weiss@gmail.com> | 2025-01-03 15:06:15 +1100 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-02-11 23:14:49 -0800 |
commit | 8f5130afdc60f4957086e41d62cfe9f8d70d5321 (patch) | |
tree | da9f8a9d217eff1484bf78003d52624d1f91433b /src/test/burn | |
parent | fcae786168ee7c148ac932d725357f9714ad6631 (diff) | |
download | wix-8f5130afdc60f4957086e41d62cfe9f8d70d5321.tar.gz wix-8f5130afdc60f4957086e41d62cfe9f8d70d5321.tar.bz2 wix-8f5130afdc60f4957086e41d62cfe9f8d70d5321.zip |
Fix ups for Domain Group creation / removal.
Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/test/burn')
-rw-r--r-- | src/test/burn/WixTestTools/RuntimeFactAttribute.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/burn/WixTestTools/RuntimeFactAttribute.cs b/src/test/burn/WixTestTools/RuntimeFactAttribute.cs index d7f56f70..2644a1cc 100644 --- a/src/test/burn/WixTestTools/RuntimeFactAttribute.cs +++ b/src/test/burn/WixTestTools/RuntimeFactAttribute.cs | |||
@@ -47,6 +47,8 @@ namespace WixTestTools | |||
47 | 47 | ||
48 | var domainTestsEnabledString = Environment.GetEnvironmentVariable(RequiredDomainEnvironmentVariableName); | 48 | var domainTestsEnabledString = Environment.GetEnvironmentVariable(RequiredDomainEnvironmentVariableName); |
49 | RuntimeDomainTestsEnabled = Boolean.TryParse(domainTestsEnabledString, out var domainTestsEnabled) && domainTestsEnabled; | 49 | RuntimeDomainTestsEnabled = Boolean.TryParse(domainTestsEnabledString, out var domainTestsEnabled) && domainTestsEnabled; |
50 | |||
51 | RunningOnWindowsServer = IsWindowsServer(); | ||
50 | } | 52 | } |
51 | 53 | ||
52 | public bool DomainRequired | 54 | public bool DomainRequired |
@@ -63,8 +65,6 @@ namespace WixTestTools | |||
63 | this.Skip = $"These tests require the test host to be running as a domain member ({(RunningInDomain ? "passed" : "failed")}). These tests affect both MACHINE AND DOMAIN state. To accept the consequences, set the {RequiredDomainEnvironmentVariableName} environment variable to true ({(RuntimeDomainTestsEnabled ? "passed" : "failed")})."; | 65 | this.Skip = $"These tests require the test host to be running as a domain member ({(RunningInDomain ? "passed" : "failed")}). These tests affect both MACHINE AND DOMAIN state. To accept the consequences, set the {RequiredDomainEnvironmentVariableName} environment variable to true ({(RuntimeDomainTestsEnabled ? "passed" : "failed")})."; |
64 | } | 66 | } |
65 | } | 67 | } |
66 | |||
67 | RunningOnWindowsServer = IsWindowsServer(); | ||
68 | } | 68 | } |
69 | 69 | ||
70 | private bool _RequireWindowsServer; | 70 | private bool _RequireWindowsServer; |