diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2010-11-01 14:22:15 (GMT) |
---|---|---|
committer | Kent Hansen <kent.hansen@nokia.com> | 2010-11-01 14:29:03 (GMT) |
commit | f2a68528ba235d5170806dad7007652842774798 (patch) | |
tree | 767b08afecdde41c2b8f371694bee1e1857fc0d8 /tests/benchmarks/script/sunspider/sunspider.pro | |
parent | 06d0f06f51ebb011ba3cb57f13da3179da56c6a1 (diff) | |
download | Qt-f2a68528ba235d5170806dad7007652842774798.zip Qt-f2a68528ba235d5170806dad7007652842774798.tar.gz Qt-f2a68528ba235d5170806dad7007652842774798.tar.bz2 |
Import SunSpider benchmarks for QtScript
Gives us an easy way to check pure JS performance whenever we
update QtScript's back-end. QTestLib integration also means that
the performance can be readily tracked over time by Qt's QA
systems.
Reviewed-by: Jedrzej Nowacki
Diffstat (limited to 'tests/benchmarks/script/sunspider/sunspider.pro')
-rw-r--r-- | tests/benchmarks/script/sunspider/sunspider.pro | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/benchmarks/script/sunspider/sunspider.pro b/tests/benchmarks/script/sunspider/sunspider.pro new file mode 100644 index 0000000..431505b --- /dev/null +++ b/tests/benchmarks/script/sunspider/sunspider.pro @@ -0,0 +1,20 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_bench_sunspider + +SOURCES += tst_sunspider.cpp + +QT = core script + +!symbian:DEFINES += SRCDIR=\\\"$$PWD\\\" + +wince*|symbian: { +testFiles.sources = tests +testFiles.path = . +DEPLOYMENT += testFiles +} + +symbian* { + TARGET.EPOCHEAPSIZE = 0x20000 0x2000000 // Min 128kB, Max 32MB + TARGET.EPOCSTACKSIZE = 0x14000 +} |