It is helpful to be able to use the test suite as a regression test: make a change to the compiler/vm, re-run the tests, and if there are any failures you know it's your fault. Right now we can't do that, because the expected-to-fail tests are mixed in with the expected-to-pass tests. So we can't use them as a regression test. Change-Id: Ied606882b9835a7effd7e75bfcf3e5f827e0a2c8 Signed-off-by: Adam Joseph <adam@westernsemico.com> Reviewed-on: https://cl.tvl.fyi/c/depot/+/7036 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
15 lines
217 B
Nix
15 lines
217 B
Nix
let
|
|
|
|
foobar = "foobar";
|
|
|
|
in
|
|
|
|
{ xyzzy2 ? xyzzy # mutually recursive args
|
|
, xyzzy ? "blaat" # will be overridden by --argstr
|
|
, fb ? foobar
|
|
, lib # will be set by --arg
|
|
}:
|
|
|
|
{
|
|
result = lib.concat [xyzzy xyzzy2 fb];
|
|
}
|