summaryrefslogtreecommitdiffstats
path: root/tests/packagecreator/tst_packagecreator.cpp
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@pelagicore.com>2019-04-03 00:48:22 +0200
committerRobert Griebl <robert.griebl@pelagicore.com>2019-08-01 11:23:31 +0200
commitb4aee167d3bc6b9f64229317fbc428b3f3b83c0d (patch)
tree6b526d57203f34f4b85a82e2e958ace227c83960 /tests/packagecreator/tst_packagecreator.cpp
parent3bc3dc4c8e912beb18aec7ab84af40c0129d84c0 (diff)
Add new package abstraction, which allows multiple executables per package
This is part 1 which is missing doc updates and missing the update-builtin- applications functionality. Both will be added in a follow-up commit. Change-Id: I2b493cfb7585143962067674690b02cc132ef78b Reviewed-by: Dominik Holland <dominik.holland@pelagicore.com>
Diffstat (limited to 'tests/packagecreator/tst_packagecreator.cpp')
-rw-r--r--tests/packagecreator/tst_packagecreator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/packagecreator/tst_packagecreator.cpp b/tests/packagecreator/tst_packagecreator.cpp
index 1b030168..aabc7007 100644
--- a/tests/packagecreator/tst_packagecreator.cpp
+++ b/tests/packagecreator/tst_packagecreator.cpp
@@ -31,7 +31,7 @@
#include "global.h"
#include "installationreport.h"
-#include "package.h"
+#include "packageutilities.h"
#include "packagecreator.h"
#include "utilities.h"
@@ -80,7 +80,7 @@ void tst_PackageCreator::initTestCase()
m_isCygwin = tar.readAllStandardOutput().contains("Cygwin");
- QVERIFY(Package::checkCorrectLocale());
+ QVERIFY(PackageUtilities::checkCorrectLocale());
}
void tst_PackageCreator::createAndVerify_data()
@@ -173,7 +173,7 @@ QString tst_PackageCreator::escapeFilename(const QString &name)
int main(int argc, char *argv[])
{
- Package::ensureCorrectLocale();
+ PackageUtilities::ensureCorrectLocale();
QCoreApplication app(argc, argv);
app.setAttribute(Qt::AA_Use96Dpi, true);
tst_PackageCreator tc;