forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding tests for the new Math APIs (dotnet/corefx#33359)
* Updating the System.Runtime.Extensions ref assembly to include the new math functions * Adding tests to cover the new math functions Commit migrated from dotnet/corefx@2999b45
- Loading branch information
1 parent
7124cbb
commit 8872cba
Showing
6 changed files
with
764 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/libraries/System.Runtime.Extensions/src/ApiCompatBaseline.netcoreappaot.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Compat issues with assembly System.Runtime.Extensions: | ||
MembersMustExist : Member 'System.Math.FusedMultiplyAdd(System.Double, System.Double, System.Double)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.Math.ILogB(System.Double)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.Math.Log2(System.Double)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.Math.ScaleB(System.Double, System.Int32)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.FusedMultiplyAdd(System.Single, System.Single, System.Single)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.ILogB(System.Single)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.Log2(System.Single)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.ScaleB(System.Single, System.Int32)' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 8 |
10 changes: 10 additions & 0 deletions
10
src/libraries/System.Runtime.Extensions/src/ApiCompatBaseline.uapaot.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Compat issues with assembly System.Runtime.Extensions: | ||
MembersMustExist : Member 'System.Math.FusedMultiplyAdd(System.Double, System.Double, System.Double)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.Math.ILogB(System.Double)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.Math.Log2(System.Double)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.Math.ScaleB(System.Double, System.Int32)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.FusedMultiplyAdd(System.Single, System.Single, System.Single)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.ILogB(System.Single)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.Log2(System.Single)' does not exist in the implementation but it does exist in the contract. | ||
MembersMustExist : Member 'System.MathF.ScaleB(System.Single, System.Int32)' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.