~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to tests/helper.py

  • Committer: James Henstridge
  • Date: 2009-08-07 00:36:10 UTC
  • mfrom: (305.2.3 storm.bug-268151)
  • Revision ID: james@jamesh.id.au-20090807003610-mbgig050oo5qt13x
Fix build of C extension on Windows.

[r=jkakar, therve]

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")
73
70
            return
74
71
        unittest.TestCase.run(self, result)
75
72