2020-10-23 13:20:38 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
expectedJSONRegex='\[\{"drvPath":".*multiple-outputs-a.drv","outputs":\{"first":".*multiple-outputs-a-first","second":".*multiple-outputs-a-second"}},\{"drvPath":".*multiple-outputs-b.drv","outputs":\{"out":".*multiple-outputs-b"}}]'
|
2021-06-25 09:17:19 +00:00
|
|
|
nix build -f multiple-outputs.nix --json a.all b.all --no-link | jq --exit-status '
|
2020-10-23 13:20:38 +00:00
|
|
|
(.[0] |
|
|
|
|
(.drvPath | match(".*multiple-outputs-a.drv")) and
|
|
|
|
(.outputs.first | match(".*multiple-outputs-a-first")) and
|
|
|
|
(.outputs.second | match(".*multiple-outputs-a-second")))
|
|
|
|
and (.[1] |
|
|
|
|
(.drvPath | match(".*multiple-outputs-b.drv")) and
|
|
|
|
(.outputs.out | match(".*multiple-outputs-b")))
|
|
|
|
'
|
2021-05-05 19:00:08 +00:00
|
|
|
testNormalization () {
|
|
|
|
clearStore
|
2021-06-25 09:17:19 +00:00
|
|
|
outPath=$(nix-build ./simple.nix --no-out-link)
|
2021-05-05 19:00:08 +00:00
|
|
|
test "$(stat -c %Y $outPath)" -eq 1
|
|
|
|
}
|
2021-06-25 09:17:19 +00:00
|
|
|
|
2021-05-05 19:00:08 +00:00
|
|
|
testNormalization
|