831a160e00
This change disables failing tests to increase the likelihood that 'make check' terminates with a zero exit status. This is done to prevent the CI system from blocking further commits once qtbase#refactor is merged into qtbase#master. Failing tests are marked as insignificant (by putting 'CONFIG += insignificant_test' in the .pro file). Note: This is a temporary measure that needs to be cleaned up once the refactor->master integration is complete. Ideally all disabled tests need to be enabled and passing. All changes will be marked by the string QTBUG-21402 in a comment for easy location. Task-number: QTBUG-21402 Change-Id: Ic4400671671f6d9b75b106a6aa4755b20e74378d Reviewed-on: http://codereview.qt-project.org/4678 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com> |
||
---|---|---|
.. | ||
Makefile.nonqt | ||
README.txt | ||
tst_v8.cpp | ||
v8.pro | ||
v8main.cpp | ||
v8test.cpp | ||
v8test.h |
The v8 tests are actually implemented in v8test.[h|cpp]. There are also QtTest (tst_v8.cpp) and non-Qt (v8main.cpp) stubs provided to run these tests. This is done to allow the tests to be run both in the Qt CI system, and manually without a build of Qt. The latter is necessary to run them against more exotic build of V8, like the ARM simulator. To build the non-Qt version of the tests, first build a debug or release V8 library under src/3rdparty/v8 using scons, and then use the Makefile.nonqt makefile selecting one of the following targets: release: Build the tests with -O2 and link against libv8 debug: Build the tests with -g and link against libv8_g release-m32: Build the tests with -O2 -m32 and link against libv8 debug-m32: Build the tests with -g -m32 and link against libv8_g