mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
7 lines
226 B
Bash
7 lines
226 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -o xtrace
|
||
|
pwd
|
||
|
find . -name text.nix
|
||
|
testfiles=$(find . -name test.nix)
|
||
|
nix-build -E "with import <nixpkgs> {}; callPackage testing/driver.nix { testFiles = [ $testfiles ]; }" --show-trace && cat result
|