summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/T10970.hs
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-03-04 10:45:49 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-03-10 03:20:43 -0500
commit844cf1e14fe031c9ed7597b00a1183ad9b1ccc0a (patch)
tree44ac0a3a05db57e606a8402835508292d7ed6b60 /testsuite/tests/driver/T10970.hs
parent8532b8a9d19effb5186fbe2101008655dfaa01f2 (diff)
downloadhaskell-844cf1e14fe031c9ed7597b00a1183ad9b1ccc0a.tar.gz
Normalise output of T10970 test
The output of this test changes each time the containers submodule version updates. It's easier to apply the version normaliser so that the test checks that there is a version number, but not which one it is.
Diffstat (limited to 'testsuite/tests/driver/T10970.hs')
-rw-r--r--testsuite/tests/driver/T10970.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/driver/T10970.hs b/testsuite/tests/driver/T10970.hs
index 9de4f80650..a3eb5b757d 100644
--- a/testsuite/tests/driver/T10970.hs
+++ b/testsuite/tests/driver/T10970.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE CPP #-}
main = do
- putStrLn VERSION_containers
+ putStrLn ("containers-" ++ VERSION_containers)
#if MIN_VERSION_base(3,0,0)
putStrLn "OK"
#endif