Created
October 17, 2012 03:21
Revisions
-
owenthereal revised this gist
Oct 17, 2012 . No changes.There are no files selected for viewing
-
owenthereal revised this gist
Oct 17, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/sh # Usage: # # * copy this file to the test262 folder # * start nailgun server with `ng-server` -
owenthereal revised this gist
Oct 17, 2012 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,11 @@ #!/bin/sh #Usage: # # * copy this file to the test262 folder # * start nailgun server with `ng-server` # * run suite with `sh run-test262-nailgun.sh <dynjs-folder>` if [ $# = 0 ] then echo "Usage: run-test262 <dynjs-folder>" -
owenthereal created this gist
Oct 17, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ #!/bin/sh if [ $# = 0 ] then echo "Usage: run-test262 <dynjs-folder>" exit 0 fi TEST_FOLDER=`pwd` cd $1 if [ ! -f target/dynjs-all.jar ]; then mvn clean package -Pshade fi echo "Adding dynjs-all.jar to nailgun class path" ng ng-cp `pwd`/target/dynjs-all.jar echo "Running test262 suite..." cd ${TEST_FOLDER} python tools/packaging/test262.py --command "ng org.dynjs.cli.Main"