-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mark __unorddf2 tests as failures for arm64.
Clang generates calls to this, but we don't actually have support for it. Test: ./run_tests.py --suite libc++ --abi arm64-v8a --skip-run Bug: android/ndk#294 Change-Id: Idf9ee0638c65e6df83b66e1121bf76b1c6ace001
- Loading branch information
Showing
4 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
tests/libc++/test/std/numerics/complex_number/complex_member_ops/test_config.py
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,4 @@ | ||
def build_broken(abi, api, toolchain, name): | ||
if abi == 'arm64-v8a' and name == 'divide_equal_complex.pass': | ||
return abi, 'https://github.com/android-ndk/ndk/issues/294' | ||
return None, None |
8 changes: 8 additions & 0 deletions
8
tests/libc++/test/std/numerics/complex_number/complex_ops/test_config.py
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,8 @@ | ||
def build_broken(abi, api, toolchain, name): | ||
broken_tests = ( | ||
'complex_divide_complex.pass', | ||
'scalar_divide_complex.pass', | ||
) | ||
if abi == 'arm64-v8a' and name in broken_tests: | ||
return abi, 'https://github.com/android-ndk/ndk/issues/294' | ||
return None, None |
4 changes: 4 additions & 0 deletions
4
tests/libc++/test/std/numerics/complex_number/complex_transcendentals/test_config.py
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,4 @@ | ||
def build_broken(abi, api, toolchain, name): | ||
if abi == 'arm64-v8a' and name in ('atan.pass', 'atanh.pass'): | ||
return abi, 'https://github.com/android-ndk/ndk/issues/294' | ||
return None, None |
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,4 @@ | ||
def build_broken(abi, api, toolchain, name): | ||
if abi == 'arm64-v8a' and name == 'divide_equal_complex.pass': | ||
return abi, 'https://github.com/android-ndk/ndk/issues/294' | ||
return None, None |