Jenkinsfile: Enable all Wine warning messages.

We need this in order to debug which components are missing in the Wine testing environment as it seems to be the case that at least one critical networking library is missing despite the fact that the Docker image is almost completely copypasted from a previously working IW4x runtime environment.
This commit is contained in:
/dev/urandom 2016-09-28 20:55:17 +02:00
parent ddb3600e72
commit df40f991e4
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E

2
Jenkinsfile vendored
View File

@ -152,7 +152,7 @@ def doUnitTests(name) {
// Run tests
getIW4xExecutable()
if (isUnix()) {
sh "wine-wrapper iw4x.exe -tests"
sh "WINEDEBUG=warn+all wine-wrapper iw4x.exe -tests"
} else {
bat "iw4x.exe -tests"
}