98df735b51
* Removed some dead code (successor stuff) from nix-push. * Updated terminology in the tests (store expr -> drv path). * Check that the deriver is set properly in the tests.
10 lines
264 B
Bash
10 lines
264 B
Bash
drvPath=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)
|
|
|
|
echo "derivation is $drvPath"
|
|
|
|
outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
|
|
|
|
echo "output path is $outPath"
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
if test "$text" != "Hello World!"; then exit 1; fi
|