summaryrefslogtreecommitdiffstats
path: root/tests/auto/v8/README.txt
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2011-08-30 11:51:17 +0200
committerSamuel Rødal <samuel.rodal@nokia.com>2011-08-30 11:51:20 +0200
commit42f2da5e6b543e698fc4f036c45ebb15078409c8 (patch)
tree2d688b1a812d8410d4ae85283d5e413957000e11 /tests/auto/v8/README.txt
parente9962cc300a805ce09a02ce0c9ae23ceaf8073bb (diff)
parent009f3d14045e2e2a6eff8c87a8da9eaa621c5249 (diff)
Merge remote branch 'gerrit/master' into refactor
Conflicts: src/src.pro Change-Id: Ic04fb170b82e86dc3cef6fe979f8fb709db10daf
Diffstat (limited to 'tests/auto/v8/README.txt')
-rw-r--r--tests/auto/v8/README.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/v8/README.txt b/tests/auto/v8/README.txt
new file mode 100644
index 0000000000..097c459036
--- /dev/null
+++ b/tests/auto/v8/README.txt
@@ -0,0 +1,13 @@
+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