1
0
Fork 0

Fix comparison of argument list.

This commit is contained in:
Willi Goesgens 2015-05-11 09:44:09 +02:00
parent d0a20e8c5e
commit 6e014ea204
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ function startInstance (protocol, options, addArgs, testname) {
}
var valgrindHosts = '';
if (typeof(options.valgrindHosts) !== undefined) {
if (typeof(options.valgrindHosts) !== 'object') {
if (options.valgrindHosts.Coordinator === true) {
valgrindHosts += 'Coordinator';
}