We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Not sure how much we care, but for example, Math.atan(10) is 1.4711276743037344 on OSX. On other platforms it equals 1.4711276743037347.
Math.atan(10)
1.4711276743037344
1.4711276743037347
Opened as result of test failure in #4531
The text was updated successfully, but these errors were encountered:
some tips;
Test: https://github.com/Microsoft/ChakraCore/blob/master/test/AsmJs/MathBuiltinsCall.js
The test file looks useful for testing math builtins and we may compare atan result per platform if it's necessary:
atan
var isMac = (WScript.Platform && WScript.Platform.OS == 'darwin');
The line above is to check if the host OS is a mac.
Sorry, something went wrong.
[1.8>1.9] [MERGE #4653 @obastemur] asmjs: enable MathBuiltinsCall tes…
5a1a799
…t for OSX Merge pull request #4653 from obastemur:enable_math_Builtins_osx Fixes #4537
6067869
[1.9>master] [1.8>1.9] [MERGE #4653 @obastemur] asmjs: enable MathBui…
a603ec3
…ltinsCall test for OSX Merge pull request #4653 from obastemur:enable_math_Builtins_osx Fixes #4537
obastemur
MikeHolman
No branches or pull requests
Not sure how much we care, but for example,
Math.atan(10)
is1.4711276743037344
on OSX. On other platforms it equals1.4711276743037347
.Opened as result of test failure in #4531
The text was updated successfully, but these errors were encountered: