diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2011-06-30 13:15:28 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@accenture.com> | 2011-06-30 14:00:57 (GMT) |
commit | 255c648cf291fa23f64be2c7a74ffdbeb94e84e0 (patch) | |
tree | f52bb2807edb4b65293cab52249f2e11834f6857 /tests/auto/qnetworkreply/test | |
parent | be3bd368485d373e63b3e4ff5c7db2da1d119feb (diff) | |
download | Qt-255c648cf291fa23f64be2c7a74ffdbeb94e84e0.zip Qt-255c648cf291fa23f64be2c7a74ffdbeb94e84e0.tar.gz Qt-255c648cf291fa23f64be2c7a74ffdbeb94e84e0.tar.bz2 |
Symbian: tune network autotest heap size so they can run on emulator
Heap sizes were increased during development due to OOM failures,
but the tests cannot be launched on emulator because of the address space
problem (symbian emulator known issue)
As the OOM failures were caused by unlimited buffering in the proxy socket
engines (fixed by c4727a85eed57a4db698326a1bed4aa75b6e5284) the tests
work on both emulator and hardware with the new buffer size.
Task-number: QTBUG-18221
Reviewed-by: Markus Goetz
Diffstat (limited to 'tests/auto/qnetworkreply/test')
-rw-r--r-- | tests/auto/qnetworkreply/test/test.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qnetworkreply/test/test.pro b/tests/auto/qnetworkreply/test/test.pro index d1f6707..5c9bbdd 100644 --- a/tests/auto/qnetworkreply/test/test.pro +++ b/tests/auto/qnetworkreply/test/test.pro @@ -31,6 +31,6 @@ symbian:{ # Symbian toolchain does not support correct include semantics INCLUDEPATH+=..\\..\\..\\..\\include\\QtNetwork\\private # bigfile test case requires more heap - TARGET.EPOCHEAPSIZE="0x100 0x10000000" + TARGET.EPOCHEAPSIZE="0x100 0x1000000" TARGET.CAPABILITY="ALL -TCB" } |