From: Anders Waldenborg Date: Wed, 21 Mar 2012 08:34:58 +0000 (+0000) Subject: [python] Add some paths where to find test binary X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a8d873e178d45024db9c0ef6a25c6867424785f7;p=oota-llvm.git [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 --- diff --git a/bindings/python/llvm/tests/base.py b/bindings/python/llvm/tests/base.py index edd7eda8708..ff9eb2fc143 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):