Skip to content

Commit

Permalink
[python] Add some paths where to find test binary
Browse files Browse the repository at this point in the history
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
  • Loading branch information
wanders committed Mar 21, 2012
1 parent 3595954 commit a8d873e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bindings/python/llvm/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
]

POSSIBLE_TEST_BINARY_PATHS = [
'/usr/lib/debug',
'/lib',
'/usr/lib',
'/usr/local/lib',
'/lib/i386-linux-gnu',
]

class TestBase(unittest.TestCase):
Expand Down

0 comments on commit a8d873e

Please sign in to comment.