Skip to content

Commit

Permalink
Undo dummy changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed May 2, 2016
1 parent 8000cda commit 7c38225
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ matrix:
# Note coverage is run in only one configuration. Longest build first.
include:
- env: PYTHON=3.5 RUN_COVERAGE=yes
#- env: PYTHON=3.4
#- env: PYTHON=2.7
- env: PYTHON=3.4
- env: PYTHON=2.7

before_install:
# Install Miniconda
Expand Down
11 changes: 0 additions & 11 deletions llvmlite/tests/test_binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ def test_linux(self):
self.fail("unexpected dependency %r in %r" % (dep, deps))


@unittest.skipIf(True, "foo")
class TestMisc(BaseTest):
"""
Test miscellaneous functions in llvm.binding.
Expand Down Expand Up @@ -284,7 +283,6 @@ def test_print_double_locale(self):
self.assertEqual(expect, got)


@unittest.skipIf(True, "foo")
class TestModuleRef(BaseTest):

def test_str(self):
Expand Down Expand Up @@ -651,7 +649,6 @@ def test_emit_object(self):
self.assertIn(b"ELF", code_object[:10])


@unittest.skipIf(True, "foo")
class TestMCJit(BaseTest, JITWithTMTestMixin):
"""
Test JIT engines created with create_mcjit_compiler().
Expand All @@ -663,7 +660,6 @@ def jit(self, mod, target_machine=None):
return llvm.create_mcjit_compiler(mod, target_machine)


@unittest.skipIf(True, "foo")
class TestValueRef(BaseTest):

def test_str(self):
Expand Down Expand Up @@ -742,7 +738,6 @@ def test_is_declaration(self):
self.assertTrue(declared.is_declaration)


@unittest.skipIf(True, "foo")
class TestTarget(BaseTest):

def test_from_triple(self):
Expand Down Expand Up @@ -783,7 +778,6 @@ def test_str(self):
self.assertIn(target.description, s)


@unittest.skipIf(True, "foo")
class TestTargetData(BaseTest):

def target_data(self):
Expand All @@ -800,7 +794,6 @@ def test_add_pass(self):
td.add_pass(pm)


@unittest.skipIf(True, "foo")
class TestTargetMachine(BaseTest):

def test_add_target_data_pass(self):
Expand Down Expand Up @@ -903,7 +896,6 @@ def test_close(self):
pm.close()


@unittest.skipIf(True, "foo")
class TestModulePassManager(BaseTest, PassManagerTestMixin):

def pm(self):
Expand All @@ -921,7 +913,6 @@ def test_run(self):
self.assertNotIn("%.3", opt_asm)


@unittest.skipIf(True, "foo")
class TestFunctionPassManager(BaseTest, PassManagerTestMixin):

def pm(self, mod=None):
Expand Down Expand Up @@ -949,7 +940,6 @@ def test_run(self):
self.assertNotIn("%.4", opt_asm)


@unittest.skipIf(True, "foo")
class TestPasses(BaseTest, PassManagerTestMixin):

def pm(self):
Expand All @@ -975,7 +965,6 @@ def test_populate(self):
pm.add_basic_alias_analysis_pass()


@unittest.skipIf(True, "foo")
class TestDylib(BaseTest):

def test_bad_library(self):
Expand Down

0 comments on commit 7c38225

Please sign in to comment.