Changeset 798
- Timestamp:
- 08/09/08 18:10:05 (3 months ago)
- Location:
- mcbuilder/trunk
- Files:
-
- 5 added
- 2 removed
- 2 modified
-
mcbuilder.pro (modified) (1 diff)
-
tests/TestBuilder.cpp (added)
-
tests/TestBuilder.h (added)
-
tests/TestMcbuilder.cpp (deleted)
-
tests/TestMcbuilder.pro (deleted)
-
tests/TestProjectManager.cpp (added)
-
tests/TestProjectManager.h (added)
-
tests/main.cpp (added)
-
tests/runtests.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mcbuilder/trunk/mcbuilder.pro
r768 r798 93 93 94 94 95 # ******************************************* 96 # test suite 97 # ******************************************* 98 99 test_suite { 100 TARGET = mcbuilder_test 101 DEFINES += MCBUILDER_TEST_SUITE 102 CONFIG += qtestlib 103 CONFIG -= release # always, no matter what it's set to above 104 DESTDIR = tests 105 INCLUDEPATH += tests 106 107 SOURCES -= src/main.cpp 108 109 SOURCES += tests/main.cpp \ 110 tests/TestProjectManager.cpp \ 111 tests/TestBuilder.cpp \ 112 113 HEADERS += tests/TestProjectManager.h \ 114 tests/TestBuilder.h 115 } 95 116 96 117 -
mcbuilder/trunk/tests/runtests.sh
r731 r798 2 2 3 3 # first build the test 4 qmake 4 cd .. 5 qmake "CONFIG += test_suite" mcbuilder.pro 5 6 make 6 7 echo # some space 7 8 8 9 # then run it... 9 TestMcbuilder.app/Contents/MacOS/TestMcbuilder 10 tests/mcbuilder_test.app/Contents/MacOS/mcbuilder_test 10 11 11 12 echo # more space
