diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-05-27 10:00:01 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-05-27 10:00:01 (GMT) |
commit | 0d819337435487a84e274714a759eb4bda24f942 (patch) | |
tree | 0f8e086cc57838164b86b3b52b1e9376b16149b5 | |
parent | 448d7d5702e90e21e1effe2ff460a48aa4a0b7d2 (diff) | |
download | Qt-0d819337435487a84e274714a759eb4bda24f942.zip Qt-0d819337435487a84e274714a759eb4bda24f942.tar.gz Qt-0d819337435487a84e274714a759eb4bda24f942.tar.bz2 |
Fixed qscriptv8testsuite test case out-of-memory crashes.
Increased qscriptv8testsuite max heap size and skipped two test cases
on Symbian which demand too much memory.
-rw-r--r-- | tests/auto/qscriptv8testsuite/qscriptv8testsuite.pro | 2 | ||||
-rw-r--r-- | tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/auto/qscriptv8testsuite/qscriptv8testsuite.pro b/tests/auto/qscriptv8testsuite/qscriptv8testsuite.pro index 9a17e13..9976bb2 100644 --- a/tests/auto/qscriptv8testsuite/qscriptv8testsuite.pro +++ b/tests/auto/qscriptv8testsuite/qscriptv8testsuite.pro @@ -8,4 +8,4 @@ testFiles.path = . DEPLOYMENT += testFiles } -symbian:TARGET.EPOCHEAPSIZE = 0x00020000 0x01000000 +symbian:TARGET.EPOCHEAPSIZE = 0x00020000 0x02000000 diff --git a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp index 435af41..5811938 100644 --- a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp +++ b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp @@ -256,6 +256,11 @@ tst_Suite::tst_Suite() addTestExclusion("mul-exhaustive", "Demands too much memory on WinCE"); #endif +#ifdef Q_OS_SYMBIAN + addTestExclusion("nested-repetition-count-overflow", "Demands too much memory on Symbian"); + addTestExclusion("unicode-test", "Demands too much memory on Symbian"); +#endif + QVector<uint> *data = qt_meta_data_tst_Suite(); // content: *data << 1 // revision |