[python] Add some paths where to find test binary

Adds /usr/lib/debug early to list, as some systems (debian) have unstripped libs in there
Adds /lib/i386-linux-gnu for systems that does multiarch (debian)

llvm-svn: 153174
This commit is contained in:
Anders Waldenborg 2012-03-21 08:34:58 +00:00
parent 87b1d460f9
commit b766e2490d
1 changed files with 2 additions and 0 deletions

View File

@ -7,9 +7,11 @@ POSSIBLE_TEST_BINARIES = [
]
POSSIBLE_TEST_BINARY_PATHS = [
'/usr/lib/debug',
'/lib',
'/usr/lib',
'/usr/local/lib',
'/lib/i386-linux-gnu',
]
class TestBase(unittest.TestCase):