mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
Rename import-derivation -> import-from-derivation
This commit is contained in:
parent
3fb6605d3d
commit
ee3f0b7a8b
8 changed files with 8 additions and 8 deletions
|
@ -508,7 +508,7 @@
|
||||||
''^tests/functional/ca/concurrent-builds\.sh$''
|
''^tests/functional/ca/concurrent-builds\.sh$''
|
||||||
''^tests/functional/ca/eval-store\.sh$''
|
''^tests/functional/ca/eval-store\.sh$''
|
||||||
''^tests/functional/ca/gc\.sh$''
|
''^tests/functional/ca/gc\.sh$''
|
||||||
''^tests/functional/ca/import-derivation\.sh$''
|
''^tests/functional/ca/import-from-derivation\.sh$''
|
||||||
''^tests/functional/ca/new-build-cmd\.sh$''
|
''^tests/functional/ca/new-build-cmd\.sh$''
|
||||||
''^tests/functional/ca/nix-shell\.sh$''
|
''^tests/functional/ca/nix-shell\.sh$''
|
||||||
''^tests/functional/ca/post-hook\.sh$''
|
''^tests/functional/ca/post-hook\.sh$''
|
||||||
|
|
|
@ -2,5 +2,5 @@ source common.sh
|
||||||
|
|
||||||
export NIX_TESTS_CA_BY_DEFAULT=1
|
export NIX_TESTS_CA_BY_DEFAULT=1
|
||||||
|
|
||||||
cd .. && source import-derivation.sh
|
cd .. && source import-from-derivation.sh
|
||||||
|
|
|
@ -7,7 +7,7 @@ ca-tests := \
|
||||||
$(d)/duplicate-realisation-in-closure.sh \
|
$(d)/duplicate-realisation-in-closure.sh \
|
||||||
$(d)/eval-store.sh \
|
$(d)/eval-store.sh \
|
||||||
$(d)/gc.sh \
|
$(d)/gc.sh \
|
||||||
$(d)/import-derivation.sh \
|
$(d)/import-from-derivation.sh \
|
||||||
$(d)/new-build-cmd.sh \
|
$(d)/new-build-cmd.sh \
|
||||||
$(d)/nix-copy.sh \
|
$(d)/nix-copy.sh \
|
||||||
$(d)/nix-run.sh \
|
$(d)/nix-run.sh \
|
||||||
|
|
|
@ -16,7 +16,7 @@ suites += {
|
||||||
'duplicate-realisation-in-closure.sh',
|
'duplicate-realisation-in-closure.sh',
|
||||||
'eval-store.sh',
|
'eval-store.sh',
|
||||||
'gc.sh',
|
'gc.sh',
|
||||||
'import-derivation.sh',
|
'import-from-derivation.sh',
|
||||||
'new-build-cmd.sh',
|
'new-build-cmd.sh',
|
||||||
'nix-copy.sh',
|
'nix-copy.sh',
|
||||||
'nix-run.sh',
|
'nix-run.sh',
|
||||||
|
|
|
@ -4,11 +4,11 @@ source common.sh
|
||||||
|
|
||||||
clearStoreIfPossible
|
clearStoreIfPossible
|
||||||
|
|
||||||
if nix-instantiate --readonly-mode ./import-derivation.nix; then
|
if nix-instantiate --readonly-mode ./import-from-derivation.nix; then
|
||||||
echo "read-only evaluation of an imported derivation unexpectedly failed"
|
echo "read-only evaluation of an imported derivation unexpectedly failed"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
outPath=$(nix-build ./import-derivation.nix --no-out-link)
|
outPath=$(nix-build ./import-from-derivation.nix --no-out-link)
|
||||||
|
|
||||||
[ "$(cat "$outPath")" = FOO579 ]
|
[ "$(cat "$outPath")" = FOO579 ]
|
|
@ -88,7 +88,7 @@ nix_tests = \
|
||||||
why-depends.sh \
|
why-depends.sh \
|
||||||
derivation-json.sh \
|
derivation-json.sh \
|
||||||
derivation-advanced-attributes.sh \
|
derivation-advanced-attributes.sh \
|
||||||
import-derivation.sh \
|
import-from-derivation.sh \
|
||||||
nix_path.sh \
|
nix_path.sh \
|
||||||
nars.sh \
|
nars.sh \
|
||||||
placeholders.sh \
|
placeholders.sh \
|
||||||
|
|
|
@ -157,7 +157,7 @@ suites = [
|
||||||
'why-depends.sh',
|
'why-depends.sh',
|
||||||
'derivation-json.sh',
|
'derivation-json.sh',
|
||||||
'derivation-advanced-attributes.sh',
|
'derivation-advanced-attributes.sh',
|
||||||
'import-derivation.sh',
|
'import-from-derivation.sh',
|
||||||
'nix_path.sh',
|
'nix_path.sh',
|
||||||
'nars.sh',
|
'nars.sh',
|
||||||
'placeholders.sh',
|
'placeholders.sh',
|
||||||
|
|
Loading…
Reference in a new issue