commit | 292c06600c5630e32e5f775e1ada0f716d8d1b39 | [log] [tgz] |
---|---|---|
author | Mykyta Karpin <mkarpin@mirantis.com> | Mon Nov 13 12:07:52 2017 +0200 |
committer | Mykyta Karpin <mkarpin@mirantis.com> | Mon Nov 13 10:38:49 2017 +0000 |
tree | 0d06ac99080c3a21cbc29781411193f45138cf39 | |
parent | fa46782240816d148d12c0ca0ff24f0d1e6c180e [diff] |
Fix custom variable passing to tempest container Commit e0ed6cac5c468952923dd8e655127a7295580ec6 has improved quotation and this has broken run tempest method by replacing of double quotes. Change-Id: Ic918951257118b7772e29592d448c5eb98ab32e4 Related-Prod: https://mirantis.jira.com/browse/PROD-15932
diff --git a/src/com/mirantis/mk/Test.groovy b/src/com/mirantis/mk/Test.groovy index 0355544..0c4f5f0 100644 --- a/src/com/mirantis/mk/Test.groovy +++ b/src/com/mirantis/mk/Test.groovy
@@ -69,7 +69,7 @@ "-e SOURCE_FILE=${sourceFile} " + "-e LOG_DIR=${logDir} " + "-e SET=${set} " + - "-e CUSTOM=\"${custom}\" " + + "-e CUSTOM='${custom}' " + "-e CONCURRENCY=${concurrency} " + "-e TEMPEST_CONF=${tempestConf} " + "-e SKIP_LIST=${skipList} " +