~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to tests/helper.py

  • Committer: Jamu Kakar
  • Date: 2009-11-24 19:10:43 UTC
  • mfrom: (327.2.4 default-c-extensions)
  • Revision ID: jkakar@kakar.ca-20091124191043-z45n74ff1ebnh4w3
Merged default-c-extensions [r=jamesh,therve] [f=410592]

Storm's C extensions are enabled by default.  They can be disabled
by defining the STORM_CEXTENSIONS environment variable to '0'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
                break
68
68
        is_supported = getattr(self, "is_supported", None)
69
69
        if is_supported is not None and not is_supported():
 
70
            if hasattr(result, "addSkip"):
 
71
                result.startTest(self)
 
72
                result.addSkip(self, "Test not supported")
70
73
            return
71
74
        unittest.TestCase.run(self, result)
72
75