summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Craven <5086-clyring@users.noreply.gitlab.haskell.org>2022-04-27 15:35:44 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-05-05 12:48:47 -0400
commit610d028348ca0aa2721d515961f14cb72416c17c (patch)
tree775ba2a2c8e6c595800c878db210997f6da1acea
parent7da90ae34bda878f201da040799498ca873b356b (diff)
downloadhaskell-610d028348ca0aa2721d515961f14cb72416c17c.tar.gz
Add a test for the bracketing in rules for (^)
-rw-r--r--testsuite/tests/lib/base/T19569.hs56
-rw-r--r--testsuite/tests/lib/base/all.T1
2 files changed, 57 insertions, 0 deletions
diff --git a/testsuite/tests/lib/base/T19569.hs b/testsuite/tests/lib/base/T19569.hs
new file mode 100644
index 0000000000..00f7c7367b
--- /dev/null
+++ b/testsuite/tests/lib/base/T19569.hs
@@ -0,0 +1,56 @@
+-- This program is meant to compare the bracketing produced by the
+-- actual implementation of (^) with the bracketing in the RHS of its
+-- rewrite rules for known small powers, and complains if they disagree.
+
+{-# OPTIONS_GHC -O -Wno-missing-methods #-}
+
+module Main where
+
+import Control.Monad
+import Data.Typeable
+import Numeric.Natural
+import Text.Printf
+
+data MulTree = X | FromInteger Integer | Mul MulTree MulTree
+ deriving (Eq, Show)
+
+instance Num MulTree where
+ fromInteger = FromInteger
+ (*) = Mul
+
+opaquePow :: (Num a, Integral b) => a -> b -> a
+{-# NOINLINE opaquePow #-}
+opaquePow k e = k ^ e
+
+checkRules
+ :: forall expTy. (Integral expTy, Show expTy, Typeable expTy)
+ => expTy -> IO ()
+{-# INLINE checkRules #-}
+checkRules _ = let
+ checkOne :: expTy -> IO ()
+ {-# INLINE checkOne #-}
+ checkOne e = when (X ^ e /= opaquePow X e) (reportProblem (X ^ e) e)
+ reportProblem :: MulTree -> expTy -> IO ()
+ reportProblem wrongVal e = do
+ printf "Problem with exponent (%s :: %s)\n" (show e) (show $ typeOf e)
+ printf " Expected: %s\n" (show $ opaquePow X e)
+ printf " Actual: %s\n" (show wrongVal)
+ in do
+ checkOne 0
+ checkOne 1
+ checkOne 2
+ checkOne 3
+ checkOne 4
+ checkOne 5
+ checkOne 6
+ checkOne 7
+ checkOne 8
+ checkOne 9
+ checkOne 10
+
+main :: IO ()
+main = do
+ checkRules (0 :: Integer)
+ checkRules (0 :: Natural)
+ checkRules (0 :: Int)
+ checkRules (0 :: Word)
diff --git a/testsuite/tests/lib/base/all.T b/testsuite/tests/lib/base/all.T
index 3322f68a1c..b45171c8e2 100644
--- a/testsuite/tests/lib/base/all.T
+++ b/testsuite/tests/lib/base/all.T
@@ -6,3 +6,4 @@ test('T17310', normal, compile, [''])
test('T19691', normal, compile, [''])
test('executablePath', extra_run_opts(config.os), compile_and_run, [''])
test('T17472', normal, compile_and_run, [''])
+test('T19569', expect_broken(19569), compile_and_run, [''])