summaryrefslogtreecommitdiff
path: root/bindings/python
diff options
context:
space:
mode:
authorAnders Waldenborg <anders@0x63.nu>2012-03-21 08:34:58 +0000
committerAnders Waldenborg <anders@0x63.nu>2012-03-21 08:34:58 +0000
commita8d873e178d45024db9c0ef6a25c6867424785f7 (patch)
treece293602412e68ffca8fe3c350e3dd4fe4b9808a /bindings/python
parent359595413071ff706b484a875a23a4a7d1508f50 (diff)
downloadllvm-a8d873e178d45024db9c0ef6a25c6867424785f7.tar.gz
llvm-a8d873e178d45024db9c0ef6a25c6867424785f7.tar.bz2
llvm-a8d873e178d45024db9c0ef6a25c6867424785f7.tar.xz
[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) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/llvm/tests/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bindings/python/llvm/tests/base.py b/bindings/python/llvm/tests/base.py
index edd7eda870..ff9eb2fc14 100644
--- a/bindings/python/llvm/tests/base.py
+++ b/bindings/python/llvm/tests/base.py
@@ -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):