diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-04-21 01:19:00 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-04-21 01:19:00 (GMT) |
commit | e79202be457298c48b13eef4f8c35df186216aea (patch) | |
tree | 881da3ef8540c2a894eb0e5f72cafa7d15027393 /tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp | |
parent | 61f3cb6e79fea0aed80df091013c2228f64955ec (diff) | |
download | Qt-e79202be457298c48b13eef4f8c35df186216aea.zip Qt-e79202be457298c48b13eef4f8c35df186216aea.tar.gz Qt-e79202be457298c48b13eef4f8c35df186216aea.tar.bz2 |
Use different ports to avoid clashes in parallel testing.
Diffstat (limited to 'tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp')
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp b/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp index fb17f90..102b2be 100644 --- a/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp +++ b/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp @@ -74,11 +74,11 @@ private slots: void tst_QDeclarativeDebugClient::initTestCase() { - qputenv("QML_DEBUG_SERVER_PORT", "3768"); + qputenv("QML_DEBUG_SERVER_PORT", "3770"); new QDeclarativeEngine(this); m_conn = new QDeclarativeDebugConnection(this); - m_conn->connectToHost("127.0.0.1", 3768); + m_conn->connectToHost("127.0.0.1", 3770); bool ok = m_conn->waitForConnected(); Q_ASSERT(ok); |