-
Notifications
You must be signed in to change notification settings - Fork 851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cut down test262 suite size in half #444
Comments
Hm, your “factor of 2” might be a bit too optimistic. :) Right now I see 119 pairs of
But also,
|
In this case, we should leave everything as-is, it's not worth spending time on it. On the other hand, thank you for your time looking into it and making a thorough analysis! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We could probably cut down the test suite size of test262 by a factor of 2: for every test case, there's both a
…-s.js
and a…gs.js
file. Their logic seems identical, so running both seems unnecessary. The-s
ones use the "assert" function while thegs
ones basically inline it (so they run even when "assert" is not defined). We should stick with one set instead of running both.The text was updated successfully, but these errors were encountered: