diff options
author | Anders Waldenborg <anders@0x63.nu> | 2012-03-21 08:18:19 +0000 |
---|---|---|
committer | Anders Waldenborg <anders@0x63.nu> | 2012-03-21 08:18:19 +0000 |
commit | 359595413071ff706b484a875a23a4a7d1508f50 (patch) | |
tree | d030dd768fe1cb34dbd594c7547125873f0208db | |
parent | 9146e66cc179771c06e1c1aeea891cec7ad46db3 (diff) |
[python] Mark get_test_binary as not being a test
get_test_binary is a helper method, not a test, make sure nosetests
doesn't pick it up as a test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153173 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | bindings/python/llvm/tests/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bindings/python/llvm/tests/base.py b/bindings/python/llvm/tests/base.py index 420423cd18..edd7eda870 100644 --- a/bindings/python/llvm/tests/base.py +++ b/bindings/python/llvm/tests/base.py @@ -27,3 +27,4 @@ class TestBase(unittest.TestCase): return path raise Exception('No suitable test binaries available!') + get_test_binary.__test__ = False |