1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
#IgnoreConcrete: true
#InferTasks: true
-- in.cue --
package x
root: {
prepare: {
$id: "prepare"
stdout: string
}
env2: {
// Note: the string interpolation here is the only difference
// from issue2517.txtar. It makes the value incomplete
// rather than just non-concrete.
input: "\(prepare.stdout)"
}
run: {
$id: "run"
env: env2
}
}
-- out/run/errors --
-- out/run/t0 --
graph TD
t0("root.prepare [Ready]")
t1("root.run [Waiting]")
t1-->t0
-- out/run/t1 --
graph TD
t0("root.prepare [Terminated]")
t1("root.run [Ready]")
t1-->t0
-- out/run/t1/value --
{
$id: "prepare"
stdout: "foo"
}
-- out/run/t1/stats --
Leaks: 0
Freed: 11
Reused: 6
Allocs: 5
Retain: 0
Unifications: 11
Conjuncts: 17
Disjuncts: 11
-- out/run/t2 --
graph TD
t0("root.prepare [Terminated]")
t1("root.run [Terminated]")
t1-->t0
-- out/run/t2/value --
{
$id: "run"
env: {
input: "foo"
}
stdout: "foo"
}
-- out/run/t2/stats --
Leaks: 0
Freed: 12
Reused: 12
Allocs: 0
Retain: 0
Unifications: 12
Conjuncts: 22
Disjuncts: 12
-- out/run/stats/totals --
Leaks: 0
Freed: 23
Reused: 18
Allocs: 5
Retain: 0
Unifications: 23
Conjuncts: 39
Disjuncts: 23
|