diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-04-19 14:41:00 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-04-19 14:46:53 +0200 |
commit | 2eb40eba2629e23a79671ff7dfafc7f37f750e22 (patch) | |
tree | dc17ed068c54c997d7cc27e97b009ec1af1578cd /testsuite | |
parent | bd7b97328d9326fb3a425bc6d01bad8b03990ed4 (diff) | |
download | haskell-2eb40eba2629e23a79671ff7dfafc7f37f750e22.tar.gz |
Normalize GHC Trac URLs
Update several old
http://hackage.haskell.org/trac/ghc
URLs references to the current
http://ghc.haskell.org/trac/ghc
URLs.
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/README.md | 2 | ||||
-rw-r--r-- | testsuite/tests/codeGen/should_run/cgrun071.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/deriving/should_compile/drv012.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/gadt/gadt17.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/simplCore/should_compile/simpl014.hs | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/README.md b/testsuite/README.md index f934533165..8fc3efd7e1 100644 --- a/testsuite/README.md +++ b/testsuite/README.md @@ -40,4 +40,4 @@ The various ways that GHC supports are defined in `config/ghc` Please see the more extensive documentation [here][1]. - [1]: http://hackage.haskell.org/trac/ghc/wiki/Building/RunningTests + [1]: http://ghc.haskell.org/trac/ghc/wiki/Building/RunningTests diff --git a/testsuite/tests/codeGen/should_run/cgrun071.hs b/testsuite/tests/codeGen/should_run/cgrun071.hs index 29bf03d986..d55ee65e01 100644 --- a/testsuite/tests/codeGen/should_run/cgrun071.hs +++ b/testsuite/tests/codeGen/should_run/cgrun071.hs @@ -37,7 +37,7 @@ popcnt64 (W64# w#) = W# (popCnt# w#) #endif --- Cribbed from http://hackage.haskell.org/trac/ghc/ticket/3563 +-- Cribbed from http://ghc.haskell.org/trac/ghc/ticket/3563 slowPopcnt :: Word -> Word slowPopcnt x = count' (bitSize x) x 0 where diff --git a/testsuite/tests/deriving/should_compile/drv012.hs b/testsuite/tests/deriving/should_compile/drv012.hs index eb8f3847cd..1d07a4ee96 100644 --- a/testsuite/tests/deriving/should_compile/drv012.hs +++ b/testsuite/tests/deriving/should_compile/drv012.hs @@ -1,7 +1,7 @@ {-# LANGUAGE GADTs #-} -- !!! deriving for GADTs which declare Haskell98 data types. --- bug reported as http://hackage.haskell.org/trac/ghc/ticket/902 +-- bug reported as http://ghc.haskell.org/trac/ghc/ticket/902 module ShouldSucceed where data Maybe1 a where { diff --git a/testsuite/tests/gadt/gadt17.hs b/testsuite/tests/gadt/gadt17.hs index acef8100dc..26eeda9b2a 100644 --- a/testsuite/tests/gadt/gadt17.hs +++ b/testsuite/tests/gadt/gadt17.hs @@ -4,7 +4,7 @@ -- This one showed up a bug that required type refinement in TcIface -- See the call to coreRefineTys in TcIface -- --- Tests for bug: http://hackage.haskell.org/trac/ghc/ticket/685 +-- Tests for bug: http://ghc.haskell.org/trac/ghc/ticket/685 module ShouldCompile where diff --git a/testsuite/tests/simplCore/should_compile/simpl014.hs b/testsuite/tests/simplCore/should_compile/simpl014.hs index bb96547a67..2f2e78fa76 100644 --- a/testsuite/tests/simplCore/should_compile/simpl014.hs +++ b/testsuite/tests/simplCore/should_compile/simpl014.hs @@ -3,7 +3,7 @@ -- This one make SpecConstr generate bogus code (hence -O2), -- with a lint error, in GHC 6.4.1 --- C.f. http://hackage.haskell.org/trac/ghc/ticket/737 +-- C.f. http://ghc.haskell.org/trac/ghc/ticket/737 module ShouldCompile where |