diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-04-06 15:13:55 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-04-11 18:51:23 +0200 |
commit | fc2a96a1ea9cceba596cbd652b44bd830a4191e4 (patch) | |
tree | eef5f094301bd5c25710adc343b36eaf4df5e0bc /testsuite | |
parent | e662a6cb9fb6459e0a15abbff25ae7b80f91b281 (diff) | |
download | haskell-fc2a96a1ea9cceba596cbd652b44bd830a4191e4.tar.gz |
Typos in comments [ci skip]
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/README.md | 2 | ||||
-rw-r--r-- | testsuite/tests/gadt/T9380.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/partial-sigs/should_fail/PatBind3.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/pmcheck/complete_sigs/completesig10.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/simplStg/should_run/T13536.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/simplStg/should_run/T13536.stderr | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/README.md b/testsuite/README.md index 5ab6dafb34..278a668e86 100644 --- a/testsuite/README.md +++ b/testsuite/README.md @@ -17,7 +17,7 @@ Commands to run testsuite: * Test a specifc stage of GHC: `make stage=1` * Skip performance tests: `make SKIP_PERF_TESTS=YES` * Set verbosity: `make VERBOSE=n` - where n=0: No per-test ouput, n=1: Only failures, + where n=0: No per-test output, n=1: Only failures, n=2: Progress output, n=3: Include commands called (default), n=4: Include perf test results unconditionally, n=5: Echo commands in subsidiary make invocations diff --git a/testsuite/tests/gadt/T9380.hs b/testsuite/tests/gadt/T9380.hs index ebc02178f1..99dfab8477 100644 --- a/testsuite/tests/gadt/T9380.hs +++ b/testsuite/tests/gadt/T9380.hs @@ -63,6 +63,6 @@ test2 = V1a{} -> putStrLn "test2 - O_o" main = do - test0 -- no ouput at all + test0 -- no output at all test1 -- A test2 -- O_o
\ No newline at end of file diff --git a/testsuite/tests/partial-sigs/should_fail/PatBind3.hs b/testsuite/tests/partial-sigs/should_fail/PatBind3.hs index 6da898bc09..23d74e6bfa 100644 --- a/testsuite/tests/partial-sigs/should_fail/PatBind3.hs +++ b/testsuite/tests/partial-sigs/should_fail/PatBind3.hs @@ -1,6 +1,6 @@ {-# LANGUAGE PartialTypeSignatures #-} module PatBind3 where --- Oddly GHC 8.0 accepted this, but it should obvoiusly fail! +-- Oddly GHC 8.0 accepted this, but it should obviously fail! foo :: (Bool, _) -> Char Just foo = Just id diff --git a/testsuite/tests/pmcheck/complete_sigs/completesig10.hs b/testsuite/tests/pmcheck/complete_sigs/completesig10.hs index 66c446b6ef..4dbb26fed9 100644 --- a/testsuite/tests/pmcheck/complete_sigs/completesig10.hs +++ b/testsuite/tests/pmcheck/complete_sigs/completesig10.hs @@ -20,7 +20,7 @@ m2 :: T -> () m2 B = () m2 D = () --- Redudant incomplete overlap +-- Redundant incomplete overlap m3 :: T -> () m3 B = () m3 C = () diff --git a/testsuite/tests/simplStg/should_run/T13536.hs b/testsuite/tests/simplStg/should_run/T13536.hs index cf70f46163..09daa73af4 100644 --- a/testsuite/tests/simplStg/should_run/T13536.hs +++ b/testsuite/tests/simplStg/should_run/T13536.hs @@ -8,7 +8,7 @@ unId False (Just (Id x)) = (Just x) unId False Nothing = Nothing {-# NOINLINE unId #-} -val n = trace "evalued once, as it should" (Just (Id n)) +val n = trace "evaluated once, as it should" (Just (Id n)) {-# NOINLINE val #-} foo b n = unId b (val n) diff --git a/testsuite/tests/simplStg/should_run/T13536.stderr b/testsuite/tests/simplStg/should_run/T13536.stderr index 638b7f82c1..4d6b00cfb5 100644 --- a/testsuite/tests/simplStg/should_run/T13536.stderr +++ b/testsuite/tests/simplStg/should_run/T13536.stderr @@ -1 +1 @@ -evalued once, as it should +evaluated once, as it should |