aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-18 10:21:12 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-18 10:21:12 +0000
commit90b5e692846d9b7a951155c5ed4fc7cf72b08e31 (patch)
treea341049ade10d14c92f5bc7a031acb22fa54a366 /tests
parenta478e8a7bb8c24da0ac91b7100bd0e422035c62f (diff)
Support quoted attribute names in -A
This is requires if you have attribute names with dots in them. So you can now say: $ nix-instantiate '<nixos>' -A 'config.systemd.units."postgresql.service".text' --eval-only Fixes #151.
Diffstat (limited to 'tests')
-rw-r--r--tests/export-graph.nix4
-rw-r--r--tests/export-graph.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/export-graph.nix b/tests/export-graph.nix
index 3a0b0368d..fdac9583d 100644
--- a/tests/export-graph.nix
+++ b/tests/export-graph.nix
@@ -14,13 +14,13 @@ rec {
done < refs
'';
- runtimeGraph = mkDerivation {
+ foo."bar.runtimeGraph" = mkDerivation {
name = "dependencies";
builder = builtins.toFile "build-graph-builder" "${printRefs}";
exportReferencesGraph = ["refs" (import ./dependencies.nix)];
};
- buildGraph = mkDerivation {
+ foo."bar.buildGraph" = mkDerivation {
name = "dependencies";
builder = builtins.toFile "build-graph-builder" "${printRefs}";
exportReferencesGraph = ["refs" (import ./dependencies.nix).drvPath];
diff --git a/tests/export-graph.sh b/tests/export-graph.sh
index 7f6f83d87..a6fd69054 100644
--- a/tests/export-graph.sh
+++ b/tests/export-graph.sh
@@ -9,7 +9,7 @@ checkRef() {
# Test the export of the runtime dependency graph.
-outPath=$(nix-build ./export-graph.nix -A runtimeGraph -o $TEST_ROOT/result)
+outPath=$(nix-build ./export-graph.nix -A 'foo."bar.runtimeGraph"' -o $TEST_ROOT/result)
test $(nix-store -q --references $TEST_ROOT/result | wc -l) = 2 || fail "bad nr of references"
@@ -20,7 +20,7 @@ for i in $(cat $outPath); do checkRef $i; done
nix-store --gc # should force rebuild of input-1
-outPath=$(nix-build ./export-graph.nix -A buildGraph -o $TEST_ROOT/result)
+outPath=$(nix-build ./export-graph.nix -A 'foo."bar.buildGraph"' -o $TEST_ROOT/result)
checkRef input-1
checkRef input-1.drv