-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add gfx1151 target * Avoid printing 128-bit values on test failure (#366) The block_radix_sort test suite sometimes calls GTests's comparison macro ASSERT_EQ and prints to an output stream as part of the call, like this: ASSERT_EQ(val1, val2) << "at index: " << index; On Windows, if val1 or val2 is a 128-bit value, this can cause linker errors because GTests's "PrintTo" function has no overload for those types (the values are printed if the test fails). This change adds a check to see if 128-bit values are being tested, and if so, performs the test in such a way that the values will not be printed in the case where the test fails. * update changelog --------- Co-authored-by: Wayne Franz <[email protected]>
- Loading branch information
1 parent
1875530
commit 906d157
Showing
4 changed files
with
47 additions
and
10 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
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
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
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