Skip to content

Commit

Permalink
Update for 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gbrail committed Dec 31, 2024
1 parent 01f65b2 commit 13d80cf
Show file tree
Hide file tree
Showing 22 changed files with 7,704 additions and 3,255 deletions.
4,015 changes: 2,300 additions & 1,715 deletions index.html

Large diffs are not rendered by default.

211 changes: 161 additions & 50 deletions rhino-results/1.7.10-es6.json

Large diffs are not rendered by default.

391 changes: 251 additions & 140 deletions rhino-results/1.7.10.json

Large diffs are not rendered by default.

211 changes: 161 additions & 50 deletions rhino-results/1.7.11-es6.json

Large diffs are not rendered by default.

399 changes: 255 additions & 144 deletions rhino-results/1.7.11.json

Large diffs are not rendered by default.

211 changes: 161 additions & 50 deletions rhino-results/1.7.12-es6.json

Large diffs are not rendered by default.

399 changes: 255 additions & 144 deletions rhino-results/1.7.12.json

Large diffs are not rendered by default.

211 changes: 161 additions & 50 deletions rhino-results/1.7.13-es6.json

Large diffs are not rendered by default.

419 changes: 265 additions & 154 deletions rhino-results/1.7.13.json

Large diffs are not rendered by default.

215 changes: 163 additions & 52 deletions rhino-results/1.7.14-es6.json

Large diffs are not rendered by default.

423 changes: 267 additions & 156 deletions rhino-results/1.7.14.json

Large diffs are not rendered by default.

215 changes: 163 additions & 52 deletions rhino-results/1.7.15-es6.json

Large diffs are not rendered by default.

435 changes: 273 additions & 162 deletions rhino-results/1.7.15.json

Large diffs are not rendered by default.

211 changes: 161 additions & 50 deletions rhino-results/1.7.7.2-es6.json

Large diffs are not rendered by default.

391 changes: 251 additions & 140 deletions rhino-results/1.7.7.2.json

Large diffs are not rendered by default.

249 changes: 180 additions & 69 deletions rhino-results/1.7R4.json

Large diffs are not rendered by default.

249 changes: 180 additions & 69 deletions rhino-results/1.7R5.json

Large diffs are not rendered by default.

1,044 changes: 1,044 additions & 0 deletions rhino-results/1.8.0-es6.json

Large diffs are not rendered by default.

1,044 changes: 1,044 additions & 0 deletions rhino-results/1.8.0.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions rhinoall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ runTests() {
else
echo "supportVersion=${supportVersion}; load('obsoleterhinotest.js');" > tmptest.$$
fi
java -jar ${jar} -version 0 tmptest.$$ > rhino-results/${version}.json
if [ ${supportVersion} -gt 5 ]
java -jar ${jar} tmptest.$$ > rhino-results/${version}.json
if [ ${supportVersion} -gt 5 -a ${supportVersion} -lt 20 ]
then
echo "Testing ${version} -version 200"
java -jar ${jar} -version 200 tmptest.$$ > rhino-results/${version}-es6.json
Expand Down Expand Up @@ -62,7 +62,7 @@ fetchAndRunUrl 1.7.13 13 https://repo1.maven.org/maven2/org/mozilla/rhino/1.7.13
fetchAndRunUrl 1.7.14 14 https://repo1.maven.org/maven2/org/mozilla/rhino/1.7.14/rhino-1.7.14.jar
fetchAndRunUrl 1.7.15 15 https://repo1.maven.org/maven2/org/mozilla/rhino/1.7.15/rhino-1.7.15.jar

runTests 1.7.16 16 ~/src/rhino/rhino-all/build/libs/rhino-all-1.7.16-SNAPSHOT.jar
runTests 1.8.0 20 ~/src/rhino/rhino-all/build/libs/rhino-all-1.8.0.jar

rm -f tmptest.$$

Expand Down
8 changes: 4 additions & 4 deletions rhinotest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
# 4) Edit "rhinoversions.js" to add your new version to the list
# 5) Run this script!

rhinoJar=~/src/rhino/rhino-all/build/libs/rhino-all-1.7.16-SNAPSHOT.jar
rhinoVersion=1.7.14
supportVersion=14
rhinoJar=~/src/rhino/rhino-all/build/libs/rhino-all-1.8.0.jar
rhinoVersion=1.8.0
supportVersion=20

curl https://raw.githubusercontent.com/kangax/compat-table/gh-pages/data-es6.js > data-es6.js
curl https://raw.githubusercontent.com/kangax/compat-table/gh-pages/data-es2016plus.js > data-es2016plus.js
Expand All @@ -27,7 +27,7 @@ node testers.js > testers.json
echo "supportVersion=${supportVersion}; load('rhinotest.js');" > tmptest.$$

echo 'Running test...'
java -jar ${rhinoJar} -version 0 -debug tmptest.$$ > rhino-results/${rhinoVersion}.json
java -jar ${rhinoJar} -debug tmptest.$$ > rhino-results/${rhinoVersion}.json
java -jar ${rhinoJar} -version 200 -debug tmptest.$$ > rhino-results/${rhinoVersion}-es6.json

rm -f tmptest.$$
Expand Down
2 changes: 1 addition & 1 deletion rhinoversions.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ module.exports = {
'1.7.13': { flagged: true },
'1.7.14': { flagged: true },
'1.7.15': { flagged: true },
'1.7.16': { flagged: false },
'1.8.0': { flagged: true },
};

0 comments on commit 13d80cf

Please sign in to comment.