Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
884 B
Nix
44 lines
884 B
Nix
{ lib, testers }:
|
|
lib.recurseIntoAttrs {
|
|
# Positive tests
|
|
indent2 = testers.shfmt {
|
|
name = "indent2";
|
|
indent = 2;
|
|
src = ./src/indent2.sh;
|
|
};
|
|
indent2Bin = testers.shfmt {
|
|
name = "indent2Bin";
|
|
indent = 2;
|
|
src = ./src;
|
|
};
|
|
# Negative tests
|
|
indent2With0 = testers.testBuildFailure' {
|
|
drv = testers.shfmt {
|
|
name = "indent2";
|
|
indent = 0;
|
|
src = ./src/indent2.sh;
|
|
};
|
|
};
|
|
indent2BinWith0 = testers.testBuildFailure' {
|
|
drv = testers.shfmt {
|
|
name = "indent2Bin";
|
|
indent = 0;
|
|
src = ./src;
|
|
};
|
|
};
|
|
indent2With4 = testers.testBuildFailure' {
|
|
drv = testers.shfmt {
|
|
name = "indent2";
|
|
indent = 4;
|
|
src = ./src/indent2.sh;
|
|
};
|
|
};
|
|
indent2BinWith4 = testers.testBuildFailure' {
|
|
drv = testers.shfmt {
|
|
name = "indent2Bin";
|
|
indent = 4;
|
|
src = ./src;
|
|
};
|
|
};
|
|
}
|