Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea80ffb commit fda8961Copy full SHA for fda8961
1 file changed
Lib/test/test_sysconfig.py
@@ -394,8 +394,9 @@ def test_triplet_in_ext_suffix(self):
394
self.assertTrue('linux' in suffix, suffix)
395
if re.match('(i[3-6]86|x86_64)$', machine):
396
if ctypes.sizeof(ctypes.c_char_p()) == 4:
397
- self.assertTrue(suffix.endswith('i386-linux-gnu.so') \
398
- or suffix.endswith('x86_64-linux-gnux32.so'),
+ self.assertTrue(suffix.endswith('i386-linux-gnu.so') or
+ suffix.endswith('i686-linux-android.so') or
399
+ suffix.endswith('x86_64-linux-gnux32.so'),
400
suffix)
401
else: # 8 byte pointer size
402
self.assertTrue(suffix.endswith('x86_64-linux-gnu.so'), suffix)
0 commit comments