diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-06-06 16:02:22 (GMT) |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2011-06-14 14:12:44 (GMT) |
commit | 85b6b4006609914733461e777b0e051b6946344f (patch) | |
tree | db66c906fc975326b4ab394bac1e75703b549806 /tests | |
parent | af1350249ea9de68e1c4b72ed1179948aa28ca19 (diff) | |
download | Qt-85b6b4006609914733461e777b0e051b6946344f.zip Qt-85b6b4006609914733461e777b0e051b6946344f.tar.gz Qt-85b6b4006609914733461e777b0e051b6946344f.tar.bz2 |
Rename qdeclarativescriptdebugging autotest directory
Align it with the other qdeclarativedebug* tests.
Change-Id: Idde1c0948daa10bf4cc893bcd08c99b5c743553a
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.js (renamed from tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.js) | 0 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.qml (renamed from tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml) | 0 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/qdeclarativedebugjs.pro (renamed from tests/auto/declarative/qdeclarativescriptdebugging/qdeclarativescriptdebugging.pro) | 2 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/tst_qdeclarativedebugjs.cpp (renamed from tests/auto/declarative/qdeclarativescriptdebugging/tst_qdeclarativescriptdebugging.cpp) | 12 |
4 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.js b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.js index 8decbf0..8decbf0 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.js +++ b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.js diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.qml index 9096c32..9096c32 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml +++ b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.qml diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/qdeclarativescriptdebugging.pro b/tests/auto/declarative/qdeclarativedebugjs/qdeclarativedebugjs.pro index 171f308..0a33c27 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/qdeclarativescriptdebugging.pro +++ b/tests/auto/declarative/qdeclarativedebugjs/qdeclarativedebugjs.pro @@ -2,7 +2,7 @@ load(qttest_p4) contains(QT_CONFIG,declarative): QT += declarative script macx:CONFIG -= app_bundle -SOURCES += tst_qdeclarativescriptdebugging.cpp +SOURCES += tst_qdeclarativedebugjs.cpp INCLUDEPATH += ../shared # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/tst_qdeclarativescriptdebugging.cpp b/tests/auto/declarative/qdeclarativedebugjs/tst_qdeclarativedebugjs.cpp index 4301174..92f9c6e 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/tst_qdeclarativescriptdebugging.cpp +++ b/tests/auto/declarative/qdeclarativedebugjs/tst_qdeclarativedebugjs.cpp @@ -100,23 +100,23 @@ inline QUrl TEST_FILE(const char *filename) return TEST_FILE(QLatin1String(filename)); } -class tst_qdeclarativescriptdebugging : public QObject +class tst_QDeclarativeDebugJS : public QObject { Q_OBJECT public: - tst_qdeclarativescriptdebugging() {} + tst_QDeclarativeDebugJS() {} private slots: void initTestCase(); void backtrace1(); }; -void tst_qdeclarativescriptdebugging::initTestCase() +void tst_QDeclarativeDebugJS::initTestCase() { qmlRegisterType<MyTestObject>("Qt.test", 1,0, "MyTestObject"); } -void tst_qdeclarativescriptdebugging::backtrace1() +void tst_QDeclarativeDebugJS::backtrace1() { { QDeclarativeEngine engine; @@ -149,6 +149,6 @@ void tst_qdeclarativescriptdebugging::backtrace1() } -QTEST_MAIN(tst_qdeclarativescriptdebugging) +QTEST_MAIN(tst_QDeclarativeDebugJS) -#include "tst_qdeclarativescriptdebugging.moc" +#include "tst_qdeclarativedebugjs.moc" |