-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Fixes an issue with flaky 262 test #4492
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
|
|
||
| // OSX does build does not support $262 as filename | ||
| const wchar_t $262[] = | ||
| const char Test262[] = |
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.
While we are changing code here, can we add a comment here and/or in 262.js that explains this code pattern?
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.
Good idea.
test/262/262test.js
Outdated
| } | ||
|
|
||
| message += 'Expected SameValue(«' + String(actual) + '», «' + String(unexpected) + '») to be false'; | ||
| message += 'Expected SameValue(<' + String(actual) + '>, <' + String(unexpected) + '>) to be false'; |
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.
The benefit of keeping the unicode angle brackets is that that is what test262 prints itself (like when run through test262-harness)
|
@leirocks could you please review |
leirocks
left a comment
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.
![]()
|
@jackhorton @leirocks thanks for the review! |
fixes #4405