about summary refs log tree commit diff
path: root/tests/export-graph.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/export-graph.sh')
-rw-r--r--tests/export-graph.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/export-graph.sh b/tests/export-graph.sh
index 7f6f83d87c3b..a6fd69054425 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