summaryrefslogtreecommitdiff
path: root/testsuite/tests
diff options
context:
space:
mode:
authorKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2021-06-17 09:58:38 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-06-19 12:26:35 -0400
commit217b4dcc004faffd3c7f5d15ba002dcfb0d1027e (patch)
treebb323bd99384e3c4e1b0bf70877f00ac37b0d042 /testsuite/tests
parentfc8ad5f35a8ec314c801b226a9165b5354363a72 (diff)
downloadhaskell-217b4dcc004faffd3c7f5d15ba002dcfb0d1027e.tar.gz
Deprecate -Wmissing-monadfail-instances (#17875)
Also document deprecation of Wnoncanonical-monadfail-instances and -Wimplicit-kind-vars
Diffstat (limited to 'testsuite/tests')
-rw-r--r--testsuite/tests/rebindable/rebindable2.hs1
-rw-r--r--testsuite/tests/rebindable/rebindable3.hs1
-rw-r--r--testsuite/tests/rebindable/rebindable4.hs1
-rw-r--r--testsuite/tests/rebindable/rebindable5.hs1
-rw-r--r--testsuite/tests/typecheck/should_compile/all.T2
5 files changed, 1 insertions, 5 deletions
diff --git a/testsuite/tests/rebindable/rebindable2.hs b/testsuite/tests/rebindable/rebindable2.hs
index 3858d2b9f3..5729c4ef34 100644
--- a/testsuite/tests/rebindable/rebindable2.hs
+++ b/testsuite/tests/rebindable/rebindable2.hs
@@ -1,5 +1,4 @@
{-# LANGUAGE RebindableSyntax, NPlusKPatterns #-}
-{-# OPTIONS -Wno-error=missing-monadfail-instances #-}
module Main where
{
diff --git a/testsuite/tests/rebindable/rebindable3.hs b/testsuite/tests/rebindable/rebindable3.hs
index c5fd3b255b..0434c1d0fd 100644
--- a/testsuite/tests/rebindable/rebindable3.hs
+++ b/testsuite/tests/rebindable/rebindable3.hs
@@ -1,5 +1,4 @@
{-# LANGUAGE RebindableSyntax, NPlusKPatterns #-}
-{-# OPTIONS -Wno-error=missing-monadfail-instances #-}
module Main where
{
diff --git a/testsuite/tests/rebindable/rebindable4.hs b/testsuite/tests/rebindable/rebindable4.hs
index 26adc87e21..f657683a08 100644
--- a/testsuite/tests/rebindable/rebindable4.hs
+++ b/testsuite/tests/rebindable/rebindable4.hs
@@ -1,5 +1,4 @@
{-# LANGUAGE RebindableSyntax, NPlusKPatterns #-}
-{-# OPTIONS -Wno-error=missing-monadfail-instances #-}
module Main where
{
diff --git a/testsuite/tests/rebindable/rebindable5.hs b/testsuite/tests/rebindable/rebindable5.hs
index 2ce735b670..3120ea1a90 100644
--- a/testsuite/tests/rebindable/rebindable5.hs
+++ b/testsuite/tests/rebindable/rebindable5.hs
@@ -1,6 +1,5 @@
{-# LANGUAGE RebindableSyntax, NPlusKPatterns, FlexibleInstances,
MultiParamTypeClasses, FunctionalDependencies #-}
-{-# OPTIONS -Wno-error=missing-monadfail-instances #-}
module Main where
{
diff --git a/testsuite/tests/typecheck/should_compile/all.T b/testsuite/tests/typecheck/should_compile/all.T
index 9cd7c732ca..968aeb1aa7 100644
--- a/testsuite/tests/typecheck/should_compile/all.T
+++ b/testsuite/tests/typecheck/should_compile/all.T
@@ -663,7 +663,7 @@ test('T15473', normal, compile_fail, [''])
test('T15499', normal, compile, [''])
test('T15586', normal, compile, [''])
test('T15368', normal, compile, ['-fdefer-type-errors'])
-test('T15645', normal, compile, ['-Wwarn=missing-monadfail-instances'])
+test('T15645', normal, compile, [''])
test('T15646',
compile_timeout_multiplier(0.01),
# 0.01 may seem tiny (1 is timeout after 300s, so this is 3 seconds),