-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Update rwc and test262 runner #1894
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
Conversation
} else { | ||
return Harness.userSpecifiedroot + 'tests/baselines/' + type + '/' + fileName; | ||
return Harness.userSpecifiedroot + baselinefolder + '/' + type + '/' + fileName; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just realized how much of a headache this is going to be. Use path.join
.
Really we should be using path.join
instead of any string concatenation when possible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
👍 |
if (fs.existsSync(localRwcBaseline)) { | ||
jake.rmRf(localRwcBaseline); | ||
} | ||
|
||
jake.mkdirP(localRwcBaseline); | ||
jake.mkdirP(localTest262Baseline); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indent
We are moving test262 and rwc into internal repository.This PR is to update the test262 and rwc path used by the runner