Skip to content

Commit

Permalink
Added initial executor
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jul 15, 2020
1 parent 9c93f15 commit 4efde46
Show file tree
Hide file tree
Showing 4 changed files with 341 additions and 45 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test262
Submodule test262 updated 40 files
+17 −0 .github/workflows/update-master-after-main.yml
+2 −1 harness/testIntl.js
+0 −1,025 implementation-contributed/v8/mjsunit/es6/promises.js
+0 −739 implementation-contributed/v8/mjsunit/es6/unscopables.js
+0 −283 implementation-contributed/v8/mjsunit/testcfg.py
+16 −0 test/annexB/built-ins/escape/argument_bigint.js
+33 −0 test/annexB/built-ins/escape/argument_types.js
+22 −0 test/annexB/built-ins/escape/to-primitive-err.js
+20 −0 test/annexB/built-ins/escape/to-primitive-observe.js
+16 −0 test/annexB/built-ins/unescape/argument_bigint.js
+33 −0 test/annexB/built-ins/unescape/argument_types.js
+22 −0 test/annexB/built-ins/unescape/to-primitive-err.js
+20 −0 test/annexB/built-ins/unescape/to-primitive-observe.js
+21 −0 test/built-ins/Function/StrictFunction_reservedwords_with.js
+1 −1 test/built-ins/JSON/stringify/replacer-array-proxy.js
+1 −5 test/intl402/DateTimeFormat/constructor-options-fractionalSecondDigits-valid.js
+1 −1 test/intl402/DateTimeFormat/prototype/format/fractionalSecondDigits.js
+1 −1 test/intl402/DateTimeFormat/prototype/formatRange/fractionalSecondDigits.js
+11 −1 test/intl402/DateTimeFormat/prototype/formatRangeToParts/fractionalSecondDigits.js
+16 −1 test/intl402/DateTimeFormat/prototype/formatToParts/fractionalSecondDigits.js
+5 −2 test/intl402/DisplayNames/ctor-custom-prototype.js
+5 −2 test/intl402/DisplayNames/ctor-default-prototype.js
+5 −2 test/intl402/DisplayNames/instance-extensible.js
+7 −4 test/intl402/DisplayNames/locales-symbol-length.js
+5 −11 test/intl402/DisplayNames/options-fallback-abrupt-throws.js
+9 −25 test/intl402/DisplayNames/options-fallback-invalid-throws.js
+20 −33 test/intl402/DisplayNames/options-fallback-toString-abrupt-throws.js
+11 −17 test/intl402/DisplayNames/options-fallback-valid.js
+11 −17 test/intl402/DisplayNames/options-localeMatcher-valid.js
+7 −9 test/intl402/DisplayNames/options-random-properties-unchecked.js
+14 −20 test/intl402/DisplayNames/options-style-valid.js
+26 −29 test/intl402/DisplayNames/options-type-invalid-throws.js
+10 −23 test/intl402/DisplayNames/options-type-valid.js
+4 −2 test/intl402/DisplayNames/proto-from-ctor-realm.js
+7 −7 test/intl402/DisplayNames/prototype/resolvedOptions/default-option-values.js
+29 −28 test/intl402/DisplayNames/prototype/resolvedOptions/option-fallback.js
+30 −27 test/intl402/DisplayNames/prototype/resolvedOptions/option-style.js
+13 −11 test/intl402/DisplayNames/prototype/resolvedOptions/return-object.js
+17 −0 test/language/eval-code/direct/parse-failure-6.js
+17 −0 test/language/eval-code/indirect/parse-failure-6.js
4 changes: 4 additions & 0 deletions tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@ edition = "2018"
[dependencies]
Boa = { path = "../boa" }
structopt = "0.3.15"
serde = "1.0.114"
serde_yaml = "0.8.13"
bitflags = "1.2.1"
regex = "1.3.9"
once_cell = "1.4.0"
rayon = "1.3.1"
Loading

0 comments on commit 4efde46

Please sign in to comment.