diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-02-11 13:59:55 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-02-11 13:59:55 +0000 |
commit | 40f960dab8ec0c4c133727baaa649664ee4953db (patch) | |
tree | 91fcf49b49e63ff17b922ee14caa8853cf7c73f4 /testsuite | |
parent | 78ff69fa92455c6265cb93acc42ba74190e496ee (diff) | |
download | haskell-40f960dab8ec0c4c133727baaa649664ee4953db.tar.gz |
Print a warning if we get framework failures when listing brokens
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/driver/runtests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py index b736ae55d7..e1d6f7cdb5 100644 --- a/testsuite/driver/runtests.py +++ b/testsuite/driver/runtests.py @@ -256,8 +256,14 @@ for file in t_files: if config.list_broken: global brokens + print '' print 'Broken tests:' print (' '.join(map (lambda (b, n) : '#' + str(b) + '(' + n + ')', brokens))) + print '' + + if t.n_framework_failures != 0: + print 'WARNING:', str(t.n_framework_failures), 'framework failures!' + print '' else: # Now run all the tests if config.use_threads: |