From: Anders Waldenborg Date: Wed, 21 Mar 2012 08:18:19 +0000 (+0000) Subject: [python] Mark get_test_binary as not being a test X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=359595413071ff706b484a875a23a4a7d1508f50;p=oota-llvm.git [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 --- diff --git a/bindings/python/llvm/tests/base.py b/bindings/python/llvm/tests/base.py index 420423cd180..edd7eda8708 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