WebAssembly / simd

Branch of the spec repo scoped to discussion of SIMD in WebAssembly
Other
531 stars 43 forks source link

Run simd test cases with make partest #434

Closed ngzhian closed 3 years ago

ngzhian commented 3 years ago

We list all simd test cases in simd/* in TESTFILES, then tweak the substitution in quiettest to strip quiettest/ from the front of the target, rather than match on just the file name (which loses the simd/) prefix.

The temp output file name is unchanged, it uses the base file name (no simd/ prefix).

ngzhian commented 3 years ago

Just realized something incorrect about this, if you run make partest twice locally, the first run generates test/core/_output, and this global will run the tests inside that temporary folder as well. Uploaded #449 to fix this.