1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[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.

llvm-svn: 153173
This commit is contained in:
Anders Waldenborg 2012-03-21 08:18:19 +00:00
parent 955feb18b4
commit 67c13466ff

View File

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