Skip to content

Commit d409a85

Browse files
committed
more debug
1 parent b2858a3 commit d409a85

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/auto/autoupdatercore/UpdaterTest/installercontroller.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ InstallerController::InstallerController(QObject *parent) :
1414
_version(1, 0, 0),
1515
_buildDir(QCoreApplication::applicationDirPath() + "/tst_updatertest_XXXXXX")
1616
{
17+
_buildDir.setAutoRemove(false);
1718
setVersion(_version);
1819
}
1920

@@ -84,6 +85,10 @@ QVersionNumber InstallerController::version() const
8485

8586
QString InstallerController::maintenanceToolPath() const
8687
{
88+
qDebug() << _buildDir.path() << QDir(_buildDir.path()).exists();
89+
qDebug() << QDir(_buildDir.path()).entryList();
90+
qDebug() << _buildDir.path() + "/install" << QDir(_buildDir.path() + "/install").exists();
91+
qDebug() << QDir(_buildDir.path() + "/install").entryList();
8792
return _buildDir.path() + "/install";
8893
}
8994

0 commit comments

Comments
 (0)