ref #621 fix windows tests

This commit is contained in:
Andrei Yankovich 2021-06-14 10:38:24 +03:00
parent d404afaa07
commit d4be53d3bd
4 changed files with 6 additions and 6 deletions

View File

@ -321,7 +321,7 @@ void DeployCore::help() {
" Available styles: quasar, quasarDark"}, " Available styles: quasar, quasarDark"},
{"-qifBanner [path/to/banner.png]", "Sets path to the banner png file."}, {"-qifBanner [path/to/banner.png]", "Sets path to the banner png file."},
{"-qifLogo [path/to/logo.png]", "Sets path to the logo png file."}, {"-qifLogo [path/to/logo.png]", "Sets path to the logo png file."},
{"-qifOut [nameOfOutputInstallerFile.run", "Sets name of output qifw installer."}, {"-qifOut [nameOfOutputInstallerFile.run", "Sets name of output qifw installer. Warning: For windows installer automatically added exe suffix."},
} }
}, },
{ {

View File

@ -1527,12 +1527,12 @@ void deploytest::testQifOut() {
QString bin = TestBinDir + "TestOnlyC.exe"; QString bin = TestBinDir + "TestOnlyC.exe";
#endif #endif
auto result = utils.createTree({{DISTRO_DIR + "/QIF_OUT"}, auto result = utils.createTree({{DISTRO_DIR + "/QIF_OUT.exe"},
{DISTRO_DIR + "/QIF_OUT.md5"}}); {DISTRO_DIR + "/QIF_OUT.exe.md5"}});
// Run deploy installer // Run deploy installer
runTestParams({"-bin", bin, "clear", runTestParams({"-bin", bin, "clear",
"qif", "-qifOut", "QIF_OUT"}, &result); "qif", "-qifOut", "QIF_OUT.exe"}, &result);
} }
void deploytest::customTest() { void deploytest::customTest() {

View File

@ -149,7 +149,7 @@ cqtdeployer -option1 value1 -option2 list, of, values flag1 flag2 flag3
| -qifStyle [path/to/style.css]| Sets the path to the CSS style file or sets the default style. Available styles: quasar | | -qifStyle [path/to/style.css]| Sets the path to the CSS style file or sets the default style. Available styles: quasar |
| -qifBanner [path/to/banner.png]| Sets path to the banner png file. | | -qifBanner [path/to/banner.png]| Sets path to the banner png file. |
| -qifLogo [path/to/logo.png]| Sets path to the logo png file. | | -qifLogo [path/to/logo.png]| Sets path to the logo png file. |
| -qifOut [nameOfOutputInstallerFile.run] | Sets name of output qifw installer. | | -qifOut [nameOfOutputInstallerFile.run] | Sets name of output qifw installer. Warning: For windows installer automatically added exe suffix. |
#### Example: cqtdeployer -bin myApp -qmlDir ~/MyAppProject/qml -qmake ~/Qt/5.15.4/gcc_64/bin/qmake clear #### Example: cqtdeployer -bin myApp -qmlDir ~/MyAppProject/qml -qmake ~/Qt/5.15.4/gcc_64/bin/qmake clear

View File

@ -145,7 +145,7 @@ cqtdeployer -option1 value1 -option2 list,of,values flag1 flag2 flag3
| -qifStyle [path/to/style.css]| Устанавливает путь к CSS файлу стиля или устанавливает стиль по умолчанию. Доступные стили: quasar | | -qifStyle [path/to/style.css]| Устанавливает путь к CSS файлу стиля или устанавливает стиль по умолчанию. Доступные стили: quasar |
| -qifBanner [path/to/banner.png]| Устанавливает путь к png-файлу баннера. | | -qifBanner [path/to/banner.png]| Устанавливает путь к png-файлу баннера. |
| -qifLogo [path/to/logo.png]| Устанавливает путь к файлу логотипа png. | | -qifLogo [path/to/logo.png]| Устанавливает путь к файлу логотипа png. |
| -qifOut [nameOfOutputInstallerFile.run] | Устанавливает имя выходного установщика qifw. | | -qifOut [nameOfOutputInstallerFile.run] | Устанавливает имя выходного установщика qifw. Предупреждение: для установщика Windows автоматически добавляется суффикс exe. |