diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2011-03-02 08:25:13 (GMT) |
---|---|---|
committer | Kent Hansen <kent.hansen@nokia.com> | 2011-03-03 12:41:41 (GMT) |
commit | 8d74ef15220e778bc93fcae2fa072c3615f52dfa (patch) | |
tree | 7be7353a5195c07f52641397972d3e5a6f2b62f2 /tests/auto/qscriptv8testsuite/skip.txt | |
parent | 42960ef148fe912226813371ae98c31d7bd1fd1d (diff) | |
download | Qt-8d74ef15220e778bc93fcae2fa072c3615f52dfa.zip Qt-8d74ef15220e778bc93fcae2fa072c3615f52dfa.tar.gz Qt-8d74ef15220e778bc93fcae2fa072c3615f52dfa.tar.bz2 |
Refactor qscriptv8testsuite to make it more maintainable
Move the infrastructure for creating a dynamic test object
to AbstractTestSuite, so that it can be reused by the
qscriptjstestsuite test as well (change coming in next commit).
Introduce configuration files for defining skipped tests and
expected failures; this was previously embedded in the C++ code,
which made it hard to update.
Make it possible to override the default test locations through
environment variables. This makes it easy to run the autotest
against an external repository (e.g. WebKit or V8 trunk), and
even different revisions of those repositories.
Task-number: QTBUG-17903
Reviewed-by: Jedrzej Nowacki
Diffstat (limited to 'tests/auto/qscriptv8testsuite/skip.txt')
-rw-r--r-- | tests/auto/qscriptv8testsuite/skip.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/auto/qscriptv8testsuite/skip.txt b/tests/auto/qscriptv8testsuite/skip.txt new file mode 100644 index 0000000..3c2cc53 --- /dev/null +++ b/tests/auto/qscriptv8testsuite/skip.txt @@ -0,0 +1,17 @@ +# testcase | message +debug-* | not applicable +mirror-* | not applicable +array-concat | Hangs on JSC backend +array-splice | Hangs on JSC backend +sparse-array-reverse | Hangs on JSC backend +string-case | V8-specific behavior? (Doesn't pass on SpiderMonkey either) + +[Q_OS_WINCE] +deep-recursion | Demands too much memory on WinCE +nested-repetition-count-overflow | Demands too much memory on WinCE +unicode-test | Demands too much memory on WinCE +mul-exhaustive | Demands too much memory on WinCE + +[Q_OS_SYMBIAN] +nested-repetition-count-overflow | Demands too much memory on Symbian +unicode-test | Demands too much memory on Symbian |