[lit] Support parsing scripts with inconsistent or invalid encodings.
authorDaniel Dunbar <daniel@zuster.org>
Wed, 14 Aug 2013 18:22:41 +0000 (18:22 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Wed, 14 Aug 2013 18:22:41 +0000 (18:22 +0000)
commit35d5e9044c580c843eb6e825d87816619e6d7f8f
tree79149218fd7a688f6e3a740de9385d01eb4a6eb0
parentc97db8dfdd854430c28db74825a6bb7593b5ec05
[lit] Support parsing scripts with inconsistent or invalid encodings.

 - For whatever reason, we have a lot of test files with bogus unicode
   characters. This patch allows those scripts to still be parsed on Python3 by
   changing the parsing logic to work on binary files, and only require the
   actual script commands to be convertible to ascii.

 - This patch has been tweaked to now ensure that the command strings are not of
   unicode type on Python 2.6-7.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188398 91177308-0d34-0410-b5e6-96231b3b80d8
utils/lit/lit/TestRunner.py
utils/lit/tests/shtest-encoding.py [new file with mode: 0644]