diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-06-24 12:28:27 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-06-27 11:14:21 -0500 |
commit | eb53852d7ae6838e54525eb57df1d8ce8a722f9b (patch) | |
tree | 7fa05bd6df1bce2e20d87c5fbacc1c658dc000aa /src/test/burn/WixTestTools/BundleInstaller.cs | |
parent | 6ee12a64cb75097a238e60d4fd0ea542e8312214 (diff) | |
download | wix-eb53852d7ae6838e54525eb57df1d8ce8a722f9b.tar.gz wix-eb53852d7ae6838e54525eb57df1d8ce8a722f9b.tar.bz2 wix-eb53852d7ae6838e54525eb57df1d8ce8a722f9b.zip |
Add longPathAware to Burn manifest to support long paths.
Fixes 3455
Diffstat (limited to 'src/test/burn/WixTestTools/BundleInstaller.cs')
-rw-r--r-- | src/test/burn/WixTestTools/BundleInstaller.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/burn/WixTestTools/BundleInstaller.cs b/src/test/burn/WixTestTools/BundleInstaller.cs index 5551d3c0..0f2cfa8f 100644 --- a/src/test/burn/WixTestTools/BundleInstaller.cs +++ b/src/test/burn/WixTestTools/BundleInstaller.cs | |||
@@ -28,6 +28,8 @@ namespace WixTestTools | |||
28 | 28 | ||
29 | public int? AlternateExitCode { get; set; } | 29 | public int? AlternateExitCode { get; set; } |
30 | 30 | ||
31 | public string LogDirectory { get; set; } | ||
32 | |||
31 | public int? LastExitCode { get; set; } | 33 | public int? LastExitCode { get; set; } |
32 | 34 | ||
33 | /// <summary> | 35 | /// <summary> |
@@ -194,7 +196,7 @@ namespace WixTestTools | |||
194 | sb.Append(" -quiet"); | 196 | sb.Append(" -quiet"); |
195 | 197 | ||
196 | // Generate the log file name. | 198 | // Generate the log file name. |
197 | string logFile = Path.Combine(Path.GetTempPath(), String.Format("{0}_{1}_{2:yyyyMMddhhmmss}_{4}_{3}.log", this.TestGroupName, this.TestName, DateTime.UtcNow, Path.GetFileNameWithoutExtension(this.Bundle), mode)); | 199 | string logFile = Path.Combine(this.LogDirectory ?? Path.GetTempPath(), String.Format("{0}_{1}_{2:yyyyMMddhhmmss}_{4}_{3}.log", this.TestGroupName, this.TestName, DateTime.UtcNow, Path.GetFileNameWithoutExtension(this.Bundle), mode)); |
198 | sb.AppendFormat(" -log \"{0}\"", logFile); | 200 | sb.AppendFormat(" -log \"{0}\"", logFile); |
199 | 201 | ||
200 | // Set operation. | 202 | // Set operation. |