commit
58c4bc989f
@ -5,6 +5,8 @@
|
|||||||
, fetchurl
|
, fetchurl
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, libedit
|
, libedit
|
||||||
|
, runCommand
|
||||||
|
, dash
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -52,5 +54,13 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
shellPath = "/bin/dash";
|
shellPath = "/bin/dash";
|
||||||
|
tests = {
|
||||||
|
"execute-simple-command" = runCommand "${pname}-execute-simple-command" { } ''
|
||||||
|
mkdir $out
|
||||||
|
${dash}/bin/dash -c 'echo "Hello World!" > $out/success'
|
||||||
|
[ -s $out/success ]
|
||||||
|
grep -q "Hello World" $out/success
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user