uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
31
pkgs/build-support/setup-hooks/wrap-gapps-hook/tests/lib.nix
Normal file
31
pkgs/build-support/setup-hooks/wrap-gapps-hook/tests/lib.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, runCommand }:
|
||||
|
||||
rec {
|
||||
runTest = name: body: runCommand name { } ''
|
||||
set -o errexit
|
||||
${body}
|
||||
touch $out
|
||||
'';
|
||||
|
||||
skip = cond: text:
|
||||
if cond then ''
|
||||
echo "Skipping test $name" > /dev/stderr
|
||||
'' else text;
|
||||
|
||||
fail = text: ''
|
||||
echo "FAIL: $name: ${text}" > /dev/stderr
|
||||
exit 1
|
||||
'';
|
||||
|
||||
expectSomeLineContainingYInFileXToMentionZ = file: filter: expected: ''
|
||||
file=${lib.escapeShellArg file} filter=${lib.escapeShellArg filter} expected=${lib.escapeShellArg expected}
|
||||
|
||||
if ! grep --text --quiet "$filter" "$file"; then
|
||||
${fail "The file “$file” should include a line containing “$filter”."}
|
||||
fi
|
||||
|
||||
if ! grep --text "$filter" "$file" | grep --text --quiet "$expected"; then
|
||||
${fail "The file “$file” should include a line containing “$filter” that also contains “$expected”."}
|
||||
fi
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue