Browse Source
Merge branch 'master' into memory-rc1
pull/560/head
Jason Nelson
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
1 deletions
-
tests/ImageSharp.Tests/Formats/Jpg/Utils/LibJpegTools.cs
|
|
|
@ -65,7 +65,16 @@ namespace SixLabors.ImageSharp.Tests.Formats.Jpg.Utils |
|
|
|
} |
|
|
|
|
|
|
|
string args = $@"""{sourceFile}"" ""{destFile}"""; |
|
|
|
var process = Process.Start(DumpToolFullPath, args); |
|
|
|
var process = new Process |
|
|
|
{ |
|
|
|
StartInfo = |
|
|
|
{ |
|
|
|
FileName = DumpToolFullPath, |
|
|
|
Arguments = args, |
|
|
|
WindowStyle = ProcessWindowStyle.Hidden |
|
|
|
} |
|
|
|
}; |
|
|
|
process.Start(); |
|
|
|
process.WaitForExit(); |
|
|
|
} |
|
|
|
|
|
|
|
|