diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2019-02-19 20:23:48 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2019-02-19 20:24:38 +0000 |
commit | 2181b9135b656e43c374dc2a800a8809ef0b49b1 (patch) | |
tree | 22361bd92360863aba31ca366a4197aced59a60e | |
parent | 9f5b11fa6a0bc32888fa88b6c3d57baa2e734c64 (diff) | |
download | haskell-2181b9135b656e43c374dc2a800a8809ef0b49b1.tar.gz |
Exit with exit code 1 when tests unexpectedly pass
-rw-r--r-- | testsuite/driver/runtests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py index f61ebbc6b1..d86a638dd8 100644 --- a/testsuite/driver/runtests.py +++ b/testsuite/driver/runtests.py @@ -440,6 +440,7 @@ else: if len(t.unexpected_failures) > 0 or \ len(t.unexpected_stat_failures) > 0 or \ + len(t.unexpected_passes) > 0 or \ len(t.framework_failures) > 0: exitcode = 1 else: |