forked from qt-creator/qt-creator
Test: Correct path of loaded project for Mac
Change-Id: I91e0126b0f66e1635c6c1427d9f22842eeafcdd9 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -3582,11 +3582,10 @@ void DebuggerPlugin::testPythonDumpers()
|
||||
void DebuggerPluginPrivate::testPythonDumpers1()
|
||||
{
|
||||
m_testSuccess = true;
|
||||
QString proFile = ICore::resourcePath()
|
||||
#ifndef Q_OS_MAC
|
||||
+ QLatin1String("/../..")
|
||||
#endif
|
||||
+ QLatin1String("/tests/manual/debugger/simple/simple.pro");
|
||||
QString proFile = ICore::resourcePath();
|
||||
if (Utils::HostOsInfo::isMacHost())
|
||||
proFile += QLatin1String("/../..");
|
||||
proFile += QLatin1String("/../../tests/manual/debugger/simple/simple.pro");
|
||||
testLoadProject(proFile, TestCallBack(this, "testPythonDumpers2"));
|
||||
QVERIFY(m_testSuccess);
|
||||
QTestEventLoop::instance().enterLoop(20);
|
||||
@@ -3617,8 +3616,10 @@ void DebuggerPlugin::testStateMachine()
|
||||
void DebuggerPluginPrivate::testStateMachine1()
|
||||
{
|
||||
m_testSuccess = true;
|
||||
QString proFile = ICore::resourcePath()
|
||||
+ QLatin1String("/../../tests/manual/debugger/simple/simple.pro");
|
||||
QString proFile = ICore::resourcePath();
|
||||
if (Utils::HostOsInfo::isMacHost())
|
||||
proFile += QLatin1String("/../..");
|
||||
proFile += QLatin1String("/../../tests/manual/debugger/simple/simple.pro");
|
||||
testLoadProject(proFile, TestCallBack(this, "testStateMachine2"));
|
||||
QVERIFY(m_testSuccess);
|
||||
QTestEventLoop::instance().enterLoop(20);
|
||||
|
Reference in New Issue
Block a user