def test_long_type(self):
"""Test that long-type variables are displayed correctly."""
- self.build_and_run('long.cpp', set(['long']))
+ self.build_and_run('long.cpp', ['long'])
@skipUnlessDarwin
def test_long_type_from_block(self):
"""Test that long-type variables are displayed correctly from a block."""
- self.build_and_run('long.cpp', set(['long']), bc=True)
+ self.build_and_run('long.cpp', ['long'], bc=True)
def test_unsigned_long_type(self):
"""Test that 'unsigned long'-type variables are displayed correctly."""
- self.build_and_run('unsigned_long.cpp', set(['unsigned', 'long']))
+ self.build_and_run('unsigned_long.cpp', ['unsigned', 'long'])
@skipUnlessDarwin
def test_unsigned_long_type_from_block(self):
"""Test that 'unsigned_long'-type variables are displayed correctly from a block."""
self.build_and_run(
- 'unsigned_long.cpp', set(['unsigned', 'long']), bc=True)
+ 'unsigned_long.cpp', ['unsigned', 'long'], bc=True)
def test_long_long_type(self):
"""Test that 'long long'-type variables are displayed correctly."""
- self.build_and_run('long_long.cpp', set(['long long']))
+ self.build_and_run('long_long.cpp', ['long long'])
@skipUnlessDarwin
def test_long_long_type_from_block(self):
"""Test that 'long_long'-type variables are displayed correctly from a block."""
- self.build_and_run('long_long.cpp', set(['long long']), bc=True)
+ self.build_and_run('long_long.cpp', ['long long'], bc=True)
def test_unsigned_long_long_type(self):
"""Test that 'unsigned long long'-type variables are displayed correctly."""
self.build_and_run('unsigned_long_long.cpp',
- set(['unsigned', 'long long']))
+ ['unsigned', 'long long'])
@skipUnlessDarwin
def test_unsigned_long_long_type_from_block(self):
"""Test that 'unsigned_long_long'-type variables are displayed correctly from a block."""
self.build_and_run(
- 'unsigned_long_long.cpp', set(['unsigned', 'long long']), bc=True)
+ 'unsigned_long_long.cpp', ['unsigned', 'long long'], bc=True)
def test_long_type(self):
"""Test that long-type variable expressions are evaluated correctly."""
- self.build_and_run_expr('long.cpp', set(['long']))
+ self.build_and_run_expr('long.cpp', ['long'])
@skipUnlessDarwin
def test_long_type_from_block(self):
"""Test that long-type variables are displayed correctly from a block."""
- self.build_and_run_expr('long.cpp', set(['long']), bc=True)
+ self.build_and_run_expr('long.cpp', ['long'], bc=True)
def test_unsigned_long_type(self):
"""Test that 'unsigned long'-type variable expressions are evaluated correctly."""
- self.build_and_run_expr('unsigned_long.cpp', set(['unsigned', 'long']))
+ self.build_and_run_expr('unsigned_long.cpp', ['unsigned', 'long'])
@skipUnlessDarwin
def test_unsigned_long_type_from_block(self):
"""Test that 'unsigned_long'-type variables are displayed correctly from a block."""
self.build_and_run_expr(
- 'unsigned_long.cpp', set(['unsigned', 'long']), bc=True)
+ 'unsigned_long.cpp', ['unsigned', 'long'], bc=True)
def test_long_long_type(self):
"""Test that 'long long'-type variable expressions are evaluated correctly."""
- self.build_and_run_expr('long_long.cpp', set(['long long']))
+ self.build_and_run_expr('long_long.cpp', ['long long'])
@skipUnlessDarwin
def test_long_long_type_from_block(self):
"""Test that 'long_long'-type variables are displayed correctly from a block."""
- self.build_and_run_expr('long_long.cpp', set(['long long']), bc=True)
+ self.build_and_run_expr('long_long.cpp', ['long long'], bc=True)
def test_unsigned_long_long_type(self):
"""Test that 'unsigned long long'-type variable expressions are evaluated correctly."""
self.build_and_run_expr('unsigned_long_long.cpp',
- set(['unsigned', 'long long']))
+ ['unsigned', 'long long'])
@skipUnlessDarwin
def test_unsigned_long_long_type_from_block(self):
"""Test that 'unsigned_long_long'-type variables are displayed correctly from a block."""
self.build_and_run_expr(
- 'unsigned_long_long.cpp', set(['unsigned', 'long long']), bc=True)
+ 'unsigned_long_long.cpp', ['unsigned', 'long long'], bc=True)