Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Feb 08, 2024
  2. Feb 07, 2024
  3. Feb 03, 2024
  4. Feb 01, 2024
    • mergify[bot]'s avatar
      Merge pull request #9680 from cabalism/test/project-hop-imports · 663e98f8
      mergify[bot] authored
      Add tests for project imports and constraint version conflicts
      663e98f8
    • mergify[bot]'s avatar
      Merge pull request #9635 from mpickering/wip/test-runner-env · bd0dae73
      mergify[bot] authored
      Don't inherit package database to tests
      bd0dae73
    • Matthew Pickering's avatar
      testsuite: Fix Executable-Relocatable test package database location · b39b94b5
      Matthew Pickering authored
      We were attempting to register a package into the global package
      database, which then triggered some other check to do with relocatable
      packages to fail.
      
      The fix is to initialise and use a local package database, so the
      package would be built and installed into the local package database.
      b39b94b5
    • Matthew Pickering's avatar
      Don't inherit package database to tests · dbe5cf42
      Matthew Pickering authored
      I can't think of a reason why it would be desirable to expose the user's
      cabal store or local dist-newstyle to the test runner. In fact, this can
      break test output in certain situations depending on what is in your
      store.
      
      Tests should run in as hemertic environment as possible and not
      depend on anything to do with external system configuration.
      
      I have introduced a Note [Testsuite package environments] which explains
      what the environments are for the three different components of the
      testsuite.
      
      {- Note [Testsuite package environments]
      
      There are three different package environments which are used when running the
      testsuite.
      
      1. Environment used to compile `cabal-tests` executable
      2. Environment used to run test scripts "setup.test.hs"
      3. Environment made available to tests themselves via `./Setup configure`
      
      These are all distinct from each other and should be specified separately.
      
      Where are these environments specified:
      
      1. The build-depends on `cabal-tests` executable in `cabal-testsuite.cabal`
      2. The build-depends of `test-runtime-deps` executable in `cabal-testsuite.cabal`
         These dependencies are injected in a special module (`Test.Cabal.ScriptEnv0`) which
         then is consulted in `Test.Cabal.Monad` in order to pass the right environmnet.
         This is mechanism by which the `./Setup` tests have access to the in-tree `Cabal`
         and `Cabal-syntax` libraries.
      3. No specification, only the `GlobalPackageDb` is available (see
         `testPackageDBStack`) unless the test itself augments the environment with
         `withPackageDb`.
      
      At the moment, `cabal-install` tests always use the bootstrap cabal, which is a
      bit confusing but `cabal-install` is not flexible enough to be given additional
      package databases (yet).
      
      -}
      dbe5cf42
    • Phil de Joux's avatar
      Add noncyclical tests that hop over folders · 78fcdc68
      Phil de Joux authored
      - Allow for bad behaviour of master branch
      - Add cyclical checks with same file names and hops
      - Add cyclical import tests with 1 and 2 hops in cycle
      - Expected output has project with full project path
      - Add newlines at EOF
      78fcdc68
  5. Jan 31, 2024
  6. Jan 30, 2024
  7. Jan 29, 2024
    • mergify[bot]'s avatar
      Merge pull request #9665 from cabalism/test/project-cyclical-import · e268c0a7
      mergify[bot] authored
      Add further tests of cyclical project imports
      e268c0a7
    • mergify[bot]'s avatar
      Merge pull request #9602 from alt-romes/wip/romes/cabal-9389 · 1bab3716
      mergify[bot] authored
      Refactor the core component building logic: gbuild vs buildOrReplLib
      1bab3716
    • Rodrigo Mesquita's avatar
      Refactor the core component building logic · 2decb0e7
      Rodrigo Mesquita authored
      1. Refactors the duplicated `buildExtraSources` function from `gbuild` and
          `buildOrReplLib` into a standalone monadic computation in the context of
          building a component. This refactor allows
          us to share the code for building an extra source amongst the two
          functions.
      
      2. Creates a new module Distribution.Simple.GHC.Build.Modules which, in the
          same spirit as ...GHC.Build.ExtraModules, defines an action which builds
          all the Haskell modules of the component being built.
      
          This function clarifies and re-implements the logic of building Haskell
          modules in the different possible ways, while accounting for
          Template Haskell special "way requirements", which was previously
          duplicated in a non-obvious manner in gbuild and buildOrReplLib.
      
          The Note [Building Haskell modules accounting for TH] in that module
          explains the big picture, and the implementation is re-done in light of
          it.
      
      3. Re-work the linker invocations, focusing on preserving existing
      behaviour before simplifying or fixing bugs any further.
      
      Fixes #9389.
      2decb0e7
    • Rodrigo Mesquita's avatar
    • Phil de Joux's avatar
      Add cyclical import tests with 1 and 2 hops in cycle · 3f92ac66
      Phil de Joux authored
      - Assert on exact cyclical import failure message
      - Add logging and assertOutputContains to cyclical tests
      - Use a different naming convention for cyclical import tests
      - Use "self" in naming
      - Show import tree
      3f92ac66
    • Phil de Joux's avatar
    • mergify[bot]'s avatar
      Merge pull request #9650 from alt-romes/wip/romes/9640 · 72a91600
      mergify[bot] authored
      Don't build unnecessary targets of legacy-fallback deps.
      72a91600
    • Rodrigo Mesquita's avatar
      Don't build unnecessary targets of legacy-fallback deps. · e8c9d194
      Rodrigo Mesquita authored
      The refactor in f70fc980 solved an
      inconsistency in `buildAndInstallUnpackedPackage`. Namely, before the
      refactor, we didn't pass `hsSetupBuildArgs` to the build invocations,
      and afterwards we did.
      
      The result is that build targets of (legacy) package `B`, that a package
      `A` depends on, are now passed to the ./Setup build invocation of
      package `B` (e.g. `./Setup build lib:openapi3` rather than just `./Setup
      build`).
      
      This means we no longer /build always all targets of a legacy-package/
      (for example, the lib, the testsuites and the executables).
      Instead only the required target (just the lib) will be built.
      
      However, despite now passing the build args to `./Setup build`, we
      weren't passing the same arguments to the `./Setup copy` invocation.
      Therefore, `./Setup copy` would also try to copy targets of the package
      that weren't built, resulting in a failure.
      
      This fixes that failure by correctly passing the build targets to the
      `./Setup copy` invocation, just like we do for the `./Setup build` one.
      
      Fixes #9640
      e8c9d194
    • Andrea Bedini's avatar
      Drop sub-component targets (#8966) · 3f4c81fd
      Andrea Bedini authored
      This change removes support for building sub-component targets in
      cabal-install, since no versions of Cabal support this feature.
      
      The test RunMainBad is also dropped because without the concept of a
      file target, RunMainBad is the same test as ScriptBad.
      3f4c81fd
    • mergify[bot]'s avatar
      Merge pull request #9662 from bgamari/wip/drop-unix-dep · e7abea5e
      mergify[bot] authored
      Cabal-syntax: Drop dependencies on unix and Win32
      e7abea5e
    • Ben Gamari's avatar
      Cabal-syntax: Drop dependencies on unix and Win32 · cd6f1ed0
      Ben Gamari authored
      Neither of these dependencies appear to be needed.
      cd6f1ed0
  8. Jan 26, 2024
  9. Jan 25, 2024
    • mergify[bot]'s avatar
      Merge pull request #9644 from cabalism/validate/overwritten-default-config · b99a830c
      mergify[bot] authored
      Ignore `IntegrationTests2/config/default-config`
      b99a830c
    • Tom Smeding's avatar
      Ignore invalid Unicode in pkg-config descriptions (#9609) · 0b34b4ea
      Tom Smeding authored
      * Ignore invalid Unicode in pkg-config descriptions
      
      Previously, if any of the pkg-config packages on the system had invalid
      Unicode in their description fields (like the Intel vpl package has at
      the time of writing, 2024-01-11, see #9608), cabal would crash because
      it tried to interpret the entire `pkg-config --list-all` output as
      Unicode.
      
      This change, as suggested by gbaz in
        https://github.com/haskell/cabal/issues/9608#issuecomment-1886120831
      
      
      switches to using a lazy ByteString for reading in the output, splitting
      on the first space in byte land, and then parsing only the package
      _name_ to a String.
      
      For further future-proofing, package names that don't parse as valid
      Unicode don't crash Cabal, but are instead ignored.
      
      * Add changelog entry
      
      * cabal-install-solver: Add bounds on 'text'
      
      * No literal ASCII values, use 'ord'
      
      * Address review comments re invalid unicode from pkg-config
      
      * Add test for invalid unicode from pkg-config
      
      * Compatibility with text-1.2.5.0
      
      * Align imports
      
      * Handle different exception type
      
      * Use only POSIX shell syntax
      
      * Add invalid-input handler in pkg-config shim
      
      This is to appease shellcheck
      
      * Actually implement all required stuff in the pkg-config shim
      
      * Less exception dance
      
      * Fix shebang lines
      
      MacOS doesn't have /usr/bin/sh, and /bin/sh is the standard (for a POSIX
      shell) anyway
      
      * Don't expect a particular representation of invalid characters
      
      ---------
      
      Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
      0b34b4ea
  10. Jan 23, 2024
  11. Jan 22, 2024
Loading