[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
This commit is contained in:
Anders Waldenborg 2012-03-21 08:18:19 +00:00
parent 9146e66cc1
commit 3595954130

View File

@ -27,3 +27,4 @@ class TestBase(unittest.TestCase):
return path
raise Exception('No suitable test binaries available!')
get_test_binary.__test__ = False