Disabling DEBUG mode in JSTestDriver, providing a new script to run Firefox. benchmarks
authorMartin Soch <Martin.Soch@oracle.com>
Mon, 10 Dec 2012 23:06:43 +0100
branchbenchmarks
changeset 2950342e4c7f5ea
parent 294 fbeed56ff3e3
child 308 bf7dc9e8586c
Disabling DEBUG mode in JSTestDriver, providing a new script to run Firefox.
benchmarks/matrix-multiplication/pom.xml
benchmarks/run-firefox.sh
     1.1 --- a/benchmarks/matrix-multiplication/pom.xml	Mon Dec 10 20:07:05 2012 +0100
     1.2 +++ b/benchmarks/matrix-multiplication/pom.xml	Mon Dec 10 23:06:43 2012 +0100
     1.3 @@ -54,13 +54,13 @@
     1.4              <version>1.3.2.5</version>
     1.5              <configuration>
     1.6                  <port>9876</port>
     1.7 -                <browser>/usr/bin/firefox</browser>
     1.8 +                <browser>${basedir}/../run-firefox.sh</browser>
     1.9                  <browserTimeout>720</browserTimeout>
    1.10                  <tests>all</tests>
    1.11                  <config>jsTestDriver.conf</config>
    1.12                  <reset>true</reset>
    1.13                  <testOutput>${basedir}/target/testOutput</testOutput>
    1.14 -                <runnerMode>DEBUG</runnerMode>
    1.15 +                <!-- runnerMode>DEBUG</runnerMode -->
    1.16              </configuration>
    1.17              <executions>
    1.18                  <execution>
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/benchmarks/run-firefox.sh	Mon Dec 10 23:06:43 2012 +0100
     2.3 @@ -0,0 +1,2 @@
     2.4 +#!/bin/bash
     2.5 +/usr/bin/firefox --display=`echo $DISPLAY` "$@"