The Test case is mark XFAIL for other Arch too.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Actually shouldn't this be:
triple = re.compile('^mips')
instead of:
triple = '^mips'
Comment Actions
Hi Greg,
The regexes without usign re.compile will still work in python. So re.match("^mips","mips64") is also valid in python.
Python 2.7.3 (default, Jun 22 2015, 19:33:41)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import re
re.match("^mips","mips64")
<_sre.SRE_Match object at 0x7f7ccc67c030>