Skip to content

Commit

Permalink
Merge pull request bellard#16 from openwebf/feat/ci
Browse files Browse the repository at this point in the history
feat: update test262.conf and addci yml
  • Loading branch information
ErosZy authored Nov 10, 2022
2 parents 94490d2 + 853f255 commit def36ef
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .github/workflow/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: linux-x64
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: sudo apt install -y libcppunit-dev cmake
- run: mkdir build
- run: cd build && cmake ..
- run: make -j4
- run: cd ..
- run: git clone https://github.com/tc39/test262.git test262
- run: cd test262
- run: patch -p1 < ../tests/test262.patch
- run: cd ..
- run: touch test262_errors.txt
- run: ./bin/run-test262 -m -c test262.conf -a
14 changes: 12 additions & 2 deletions test262.conf
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ testdir=test262/test
AggregateError
align-detached-buffer-semantics-with-web-reality
arbitrary-module-namespace-names=skip
array-find-from-last=skip
Array.prototype.at=skip
Array.prototype.flat
Array.prototype.flatMap
Expand All @@ -60,14 +61,16 @@ ArrayBuffer
arrow-function
async-functions
async-iteration
Atomics
Atomics=skip
Atomics.waitAsync=skip
BigInt
caller
class
class-fields-private
class-fields-private-in=skip
class-fields-public
class-methods-private
class-static-block=skip
class-static-fields-public
class-static-fields-private
class-static-methods-private
Expand All @@ -89,6 +92,7 @@ default-parameters
destructuring-assignment
destructuring-binding
dynamic-import
error-cause=skip
export-star-as-namespace-from-module
FinalizationGroup=skip
FinalizationRegistry=skip
Expand All @@ -102,10 +106,12 @@ globalThis
hashbang
host-gc-required=skip
import.meta
import-assertions=skip
Int16Array
Int32Array
Int8Array
IsHTMLDDA
json-modules=skip
json-superset
legacy-regexp=skip
let
Expand All @@ -116,6 +122,7 @@ numeric-separator-literal
object-rest
object-spread
Object.fromEntries
Object.hasOwn
Object.is
optional-catch-binding
optional-chaining
Expand All @@ -134,8 +141,10 @@ regexp-lookbehind
regexp-match-indices=skip
regexp-named-groups
regexp-unicode-property-escapes
resizable-arraybuffer=skip
rest-parameters
Set
ShadowRealm=skip
SharedArrayBuffer
string-trimming
String.fromCodePoint
Expand Down Expand Up @@ -164,6 +173,7 @@ Symbol.toStringTag
Symbol.unscopables
tail-call-optimization=skip
template
Temporal=skip
top-level-await=skip
TypedArray
TypedArray.prototype.at=skip
Expand Down Expand Up @@ -196,4 +206,4 @@ test262/test/built-ins/ThrowTypeError/unique-per-realm-function-proto.js
#test262/test/built-ins/RegExp/property-escapes/

[tests]
# list test files or use config.testdir
# list test files or use config.testdir

0 comments on commit def36ef

Please sign in to comment.