forked from M-Labs/artiq
test.py2llvm: drop the test_ prefix from test_base_types() to hide it from nose
This commit is contained in:
parent
901255ee60
commit
337fd06340
|
@ -11,7 +11,7 @@ from artiq.py2llvm import base_types, arrays
|
||||||
from artiq.py2llvm.module import Module
|
from artiq.py2llvm.module import Module
|
||||||
|
|
||||||
|
|
||||||
def test_base_types(choice):
|
def _base_types(choice):
|
||||||
a = 2 # promoted later to int64
|
a = 2 # promoted later to int64
|
||||||
b = a + 1 # initially int32, becomes int64 after a is promoted
|
b = a + 1 # initially int32, becomes int64 after a is promoted
|
||||||
c = b//2 # initially int32, becomes int64 after b is promoted
|
c = b//2 # initially int32, becomes int64 after b is promoted
|
||||||
|
@ -39,7 +39,7 @@ def _build_function_types(f):
|
||||||
|
|
||||||
class FunctionBaseTypesCase(unittest.TestCase):
|
class FunctionBaseTypesCase(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.ns = _build_function_types(test_base_types)
|
self.ns = _build_function_types(_base_types)
|
||||||
|
|
||||||
def test_simple_types(self):
|
def test_simple_types(self):
|
||||||
self.assertIsInstance(self.ns["foo"], base_types.VBool)
|
self.assertIsInstance(self.ns["foo"], base_types.VBool)
|
||||||
|
|
Loading…
Reference in New Issue