Skip to content
Snippets Groups Projects
Unverified Commit 1da1893e authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub
Browse files

Merge pull request #8248 from ffaf1/cabal-check-testsuite-old-sanity

`cabal check` testuite: add sanity checks
parents be8ea514 156fb34c
No related branches found
No related tags found
No related merge requests found
Showing
with 151 additions and 0 deletions
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: An 'autogen-module' is neither on 'exposed-modules' or 'other-modules'.
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-modules` have to appear in `other-modules` or
-- `exposed-modules`.
main = cabalTest $
fails $ cabal "check" []
cabal-version: 3.0
name: pkg
synopsis: synopsis
description: description
version: 0
category: example
maintainer: none@example.com
license: GPL-3.0-or-later
library
exposed-modules: Foo
default-language: Haskell2010
autogen-modules: AutoGenMod
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: On benchmark 'benchmark' an 'autogen-module' is not on 'other-modules'
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-modules` have to appear in `other-modules` or
-- `exposed-modules` (benchmark).
main = cabalTest $
fails $ cabal "check" []
cabal-version: 3.0
name: pkg
synopsis: synopsis
description: description
version: 0
category: example
maintainer: none@example.com
license: GPL-3.0-or-later
benchmark benchmark
main-is: Main.hs
default-language: Haskell2010
autogen-modules: AutoGenMod
type: exitcode-stdio-1.0
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: On executable 'exe' an 'autogen-module' is not on 'other-modules'
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-modules` have to appear in `other-modules` or
-- `exposed-modules` (executables).
main = cabalTest $
fails $ cabal "check" []
cabal-version: 3.0
name: pkg
synopsis: synopsis
description: description
version: 0
category: example
maintainer: none@example.com
license: GPL-3.0-or-later
executable exe
main-is: Main.hs
default-language: Haskell2010
autogen-modules: AutoGenMod
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: On test suite 'test' an 'autogen-module' is not on 'other-modules'
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-modules` have to appear in `other-modules` or
-- `exposed-modules` (testsuite).
main = cabalTest $
fails $ cabal "check" []
cabal-version: 3.0
name: pkg
synopsis: synopsis
description: description
version: 0
category: example
maintainer: none@example.com
license: GPL-3.0-or-later
test-suite test
main-is: Main.hs
default-language: Haskell2010
autogen-modules: AutoGenMod
type: exitcode-stdio-1.0
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: An include in 'autogen-includes' is neither in 'includes' or 'install-includes'.
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-includes` should appear in `install-includes` or
-- `includes`.
main = cabalTest $
fails $ cabal "check" []
cabal-version: 3.0
name: pkg
synopsis: synopsis
description: description
version: 0
category: example
maintainer: none@example.com
license: GPL-3.0-or-later
library
exposed-modules: Foo
default-language: Haskell2010
autogen-includes: AutoGenInc
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: An include in 'autogen-includes' is not in 'includes'.
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-includes` should appear in `install-includes` or
-- `includes` (benchmark).
main = cabalTest $
fails $ cabal "check" []
cabal-version: 3.0
name: pkg
synopsis: synopsis
description: description
version: 0
category: example
maintainer: none@example.com
license: GPL-3.0-or-later
benchmark benchmark
main-is: Main.hs
autogen-includes: AutoGenInc
default-language: Haskell2010
type: exitcode-stdio-1.0
# cabal check
Warning: The package will not build sanely due to these errors:
Warning: An include in 'autogen-includes' is not in 'includes'.
Warning: Hackage would reject this package.
import Test.Cabal.Prelude
-- All `autogen-includes` should appear in `install-includes` or
-- `includes` (executable).
main = cabalTest $
fails $ cabal "check" []
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment