Skip to content

Commit 83d7743

Browse files
committed
Backport: Set <pkgname_datadir> to an absolute path
Ticket #10717 points out that the <pkgname>_datadir environment variable should be set to an absolute path since the test executables may change directory during their invocation. This is easily fixed by using the absoluteWorkingDirLBI function, which was introduced in 027bddf, However, in order to perform the fix in a PVP compliant manner, you have to write it in this horrible way of adding a new function and leaving the old broken function in it's place. Fixes #10717
1 parent e4a532c commit 83d7743

File tree

8 files changed

+100
-31
lines changed

8 files changed

+100
-31
lines changed

Cabal/src/Distribution/Simple/Bench.hs

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import Prelude ()
2626
import Distribution.Compat.Environment
2727
import qualified Distribution.PackageDescription as PD
2828
import Distribution.Pretty
29-
import Distribution.Simple.Build (addInternalBuildTools)
29+
import Distribution.Simple.Build (addInternalBuildToolsFixed)
3030
import Distribution.Simple.BuildPaths
3131
import Distribution.Simple.Compiler
3232
import Distribution.Simple.Errors
@@ -58,6 +58,7 @@ bench
5858
-- ^ flags sent to benchmark
5959
-> IO ()
6060
bench args pkg_descr lbi flags = do
61+
curDir <- LBI.absoluteWorkingDirLBI lbi
6162
let verbosity = fromFlag $ benchmarkVerbosity flags
6263
benchmarkNames = args
6364
pkgBenchmarks = PD.benchmarks pkg_descr
@@ -72,7 +73,8 @@ bench args pkg_descr lbi flags = do
7273
lbi
7374
{ -- Include any build-tool-depends on build tools internal to the current package.
7475
LBI.withPrograms =
75-
addInternalBuildTools
76+
addInternalBuildToolsFixed
77+
(Just curDir)
7678
pkg_descr
7779
lbi
7880
(benchmarkBuildInfo bm)

Cabal/src/Distribution/Simple/Build.hs

+49-24
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ module Distribution.Simple.Build
4848

4949
-- * Handling of internal build tools
5050
, addInternalBuildTools
51+
, addInternalBuildToolsFixed
5152
) where
5253

5354
import Distribution.Compat.Prelude
@@ -188,13 +189,15 @@ build_setupHooks
188189
-- dumped.
189190
dumpBuildInfo verbosity distPref (configDumpBuildInfo (configFlags lbi)) pkg_descr lbi flags
190191

192+
curDir <- absoluteWorkingDirLBI lbi
193+
191194
-- Now do the actual building
192195
(\f -> foldM_ f (installedPkgs lbi) componentsToBuild) $ \index target -> do
193196
let comp = targetComponent target
194197
clbi = targetCLBI target
195198
bi = componentBuildInfo comp
196199
-- Include any build-tool-depends on build tools internal to the current package.
197-
progs' = addInternalBuildTools pkg_descr lbi bi (withPrograms lbi)
200+
progs' = addInternalBuildToolsFixed (Just curDir) pkg_descr lbi bi (withPrograms lbi)
198201
lbi' =
199202
lbi
200203
{ withPrograms = progs'
@@ -376,17 +379,20 @@ repl_setupHooks
376379

377380
internalPackageDB <- createInternalPackageDB verbosity lbi distPref
378381

379-
let lbiForComponent comp lbi' =
380-
lbi'
381-
{ withPackageDB = withPackageDB lbi ++ [internalPackageDB]
382-
, withPrograms =
383-
-- Include any build-tool-depends on build tools internal to the current package.
384-
addInternalBuildTools
385-
pkg_descr
386-
lbi'
387-
(componentBuildInfo comp)
388-
(withPrograms lbi')
389-
}
382+
let lbiForComponent comp lbi' = do
383+
curDir <- absoluteWorkingDirLBI lbi'
384+
return $
385+
lbi'
386+
{ withPackageDB = withPackageDB lbi' ++ [internalPackageDB]
387+
, withPrograms =
388+
-- Include any build-tool-depends on build tools internal to the current package.
389+
addInternalBuildToolsFixed
390+
(Just curDir)
391+
pkg_descr
392+
lbi'
393+
(componentBuildInfo comp)
394+
(withPrograms lbi')
395+
}
390396
runPreBuildHooks :: LocalBuildInfo -> TargetInfo -> IO ()
391397
runPreBuildHooks lbi2 tgt =
392398
let inputs =
@@ -404,7 +410,7 @@ repl_setupHooks
404410
[ do
405411
let clbi = targetCLBI subtarget
406412
comp = targetComponent subtarget
407-
lbi' = lbiForComponent comp lbi
413+
lbi' <- lbiForComponent comp lbi
408414
preBuildComponent runPreBuildHooks verbosity lbi' subtarget
409415
buildComponent
410416
(mempty{buildCommonFlags = mempty{setupVerbosity = toFlag verbosity}})
@@ -421,7 +427,7 @@ repl_setupHooks
421427
-- REPL for target components
422428
let clbi = targetCLBI target
423429
comp = targetComponent target
424-
lbi' = lbiForComponent comp lbi
430+
lbi' <- lbiForComponent comp lbi
425431
preBuildComponent runPreBuildHooks verbosity lbi' target
426432
replComponent flags verbosity pkg_descr lbi' suffixHandlers comp clbi distPref
427433

@@ -925,13 +931,18 @@ createInternalPackageDB verbosity lbi distPref = do
925931
-- directory environment variable for the current package to the current
926932
-- 'progOverrideEnv', so that any programs configured from now on will be
927933
-- able to invoke these build tools.
928-
addInternalBuildTools
929-
:: PackageDescription
934+
--
935+
-- NB: This function will be removed in the next Cabal major version
936+
-- (use addInternalBuildTools instead). This function is introduced solely for
937+
-- backporting in a PVP compliant way.
938+
addInternalBuildToolsFixed
939+
:: Maybe (AbsolutePath (Dir Pkg))
940+
-> PackageDescription
930941
-> LocalBuildInfo
931942
-> BuildInfo
932943
-> ProgramDb
933944
-> ProgramDb
934-
addInternalBuildTools pkg lbi bi progs =
945+
addInternalBuildToolsFixed mpwd pkg lbi bi progs =
935946
prependProgramSearchPathNoLogging
936947
internalToolPaths
937948
[pkgDataDirVar]
@@ -950,13 +961,27 @@ addInternalBuildTools pkg lbi bi progs =
950961
buildDir lbi
951962
</> makeRelativePathEx (toolName' </> toolName' <.> exeExtension (hostPlatform lbi))
952963
]
953-
mbWorkDir = mbWorkDirLBI lbi
954-
rawDataDir = dataDir pkg
955-
dataDirPath
956-
| null $ getSymbolicPath rawDataDir =
957-
interpretSymbolicPath mbWorkDir sameDirectory
958-
| otherwise =
959-
interpretSymbolicPath mbWorkDir rawDataDir
964+
965+
dataDirPath :: FilePath
966+
dataDirPath =
967+
case mpwd of
968+
-- This is an absolute path, so if a process changes directory, it can still
969+
-- find the datadir (#10717)
970+
Just pwd -> interpretSymbolicPathAbsolute pwd (dataDir pkg)
971+
-- This is just wrong, but implemented for PVP compliance..
972+
Nothing -> interpretSymbolicPathCWD (dataDir pkg)
973+
974+
975+
{-# WARNING addInternalBuildTools "This function is broken, use addInternalBuildToolsFixed instead" #-}
976+
-- | A backwards compatible (broken) version of `addInternalBuildTools`, do not
977+
-- use this function. Use 'addInternalBuildToolsFixed' instead.
978+
addInternalBuildTools
979+
:: PackageDescription
980+
-> LocalBuildInfo
981+
-> BuildInfo
982+
-> ProgramDb
983+
-> ProgramDb
984+
addInternalBuildTools = addInternalBuildToolsFixed Nothing
960985

961986
-- TODO: build separate libs in separate dirs so that we can build
962987
-- multiple libs, e.g. for 'LibTest' library-style test suites

Cabal/src/Distribution/Simple/Haddock.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -336,12 +336,13 @@ haddock_setupHooks
336336
createInternalPackageDB verbosity lbi (flag $ setupDistPref . haddockCommonFlags)
337337

338338
(\f -> foldM_ f (installedPkgs lbi) targets') $ \index target -> do
339+
curDir <- absoluteWorkingDirLBI lbi
339340
let
340341
component = targetComponent target
341342
clbi = targetCLBI target
342343
bi = componentBuildInfo component
343344
-- Include any build-tool-depends on build tools internal to the current package.
344-
progs' = addInternalBuildTools pkg_descr lbi bi (withPrograms lbi)
345+
progs' = addInternalBuildToolsFixed (Just curDir) pkg_descr lbi bi (withPrograms lbi)
345346
lbi' =
346347
lbi
347348
{ withPrograms = progs'

Cabal/src/Distribution/Simple/Test.hs

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import Prelude ()
2727

2828
import qualified Distribution.PackageDescription as PD
2929
import Distribution.Pretty
30-
import Distribution.Simple.Build (addInternalBuildTools)
30+
import Distribution.Simple.Build (addInternalBuildToolsFixed)
3131
import Distribution.Simple.Compiler
3232
import Distribution.Simple.Hpc
3333
import Distribution.Simple.InstallDirs
@@ -70,6 +70,7 @@ test
7070
-- ^ flags sent to test
7171
-> IO ()
7272
test args pkg_descr lbi0 flags = do
73+
curDir <- LBI.absoluteWorkingDirLBI lbi0
7374
let common = testCommonFlags flags
7475
verbosity = fromFlag $ setupVerbosity common
7576
distPref = fromFlag $ setupDistPref common
@@ -95,7 +96,8 @@ test args pkg_descr lbi0 flags = do
9596
lbi
9697
{ withPrograms =
9798
-- Include any build-tool-depends on build tools internal to the current package.
98-
addInternalBuildTools
99+
addInternalBuildToolsFixed
100+
(Just curDir)
99101
pkg_descr
100102
lbi
101103
(PD.testBuildInfo suite)

cabal-install/src/Distribution/Client/Run.hs

+5-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,14 @@ import Distribution.PackageDescription
2828
, TestSuite (..)
2929
)
3030
import Distribution.Simple (PackageDBX (..))
31-
import Distribution.Simple.Build (addInternalBuildTools)
31+
import Distribution.Simple.Build (addInternalBuildToolsFixed)
3232
import Distribution.Simple.BuildPaths (exeExtension)
3333
import Distribution.Simple.Compiler (CompilerFlavor (..), compilerFlavor)
3434
import Distribution.Simple.Flag (fromFlag)
3535
import Distribution.Simple.LocalBuildInfo
3636
( ComponentName (..)
3737
, LocalBuildInfo (..)
38+
, absoluteWorkingDirLBI
3839
, buildDir
3940
, depLibraryPaths
4041
, interpretSymbolicPathLBI
@@ -143,6 +144,7 @@ splitRunArgs verbosity lbi args =
143144
-- | Run a given executable.
144145
run :: Verbosity -> LocalBuildInfo -> Executable -> [String] -> IO ()
145146
run verbosity lbi exe exeArgs = do
147+
curDir <- absoluteWorkingDirLBI lbi
146148
let distPref = fromFlag $ configDistPref $ configFlags lbi
147149
buildPref = buildDir lbi
148150
pkg_descr = localPkgDescr lbi
@@ -154,7 +156,8 @@ run verbosity lbi exe exeArgs = do
154156
{ withPackageDB = withPackageDB lbi ++ [SpecificPackageDB internalPkgDb]
155157
, -- Include any build-tool-depends on build tools internal to the current package.
156158
withPrograms =
157-
addInternalBuildTools
159+
addInternalBuildToolsFixed
160+
(Just curDir)
158161
pkg_descr
159162
lbi
160163
(buildInfo exe)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Setup configure
2+
Configuring datadir-test-0.1.0.0...
3+
# Setup build
4+
Preprocessing library for datadir-test-0.1.0.0...
5+
Building library for datadir-test-0.1.0.0...
6+
Preprocessing test suite 'datadir-test' for datadir-test-0.1.0.0...
7+
Building test suite 'datadir-test' for datadir-test-0.1.0.0...
8+
# Setup test
9+
Running 1 test suites...
10+
Test suite datadir-test: RUNNING...
11+
Test suite datadir-test: PASS
12+
Test suite logged to: cabal.cabal.dist/work/dist/test/datadir-test-0.1.0.0-datadir-test.log
13+
1 of 1 test suites (1 of 1 test cases) passed.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Setup configure
2+
Configuring datadir-test-0.1.0.0...
3+
# Setup build
4+
Preprocessing library for datadir-test-0.1.0.0...
5+
Building library for datadir-test-0.1.0.0...
6+
Preprocessing test suite 'datadir-test' for datadir-test-0.1.0.0...
7+
Building test suite 'datadir-test' for datadir-test-0.1.0.0...
8+
# Setup test
9+
Running 1 test suites...
10+
Test suite datadir-test: RUNNING...
11+
Test suite datadir-test: PASS
12+
Test suite logged to: cabal.dist/work/dist/test/datadir-test-0.1.0.0-datadir-test.log
13+
1 of 1 test suites (1 of 1 test cases) passed.

changelog.d/pr-10828.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
synopsis: Set <pkgname>_datadir to an absolute path when running tests
3+
packages: [Cabal]
4+
prs: 10828
5+
issues: [10717]
6+
---
7+
8+
Fix a regression where `<pkgname>_datadir` was set to a relative path. This
9+
caused issues when running testsuites which changed the working directory and
10+
accessed datafiles.

0 commit comments

Comments
 (0)