keep_debugger: {
options = {
drop_debugger: false
};
input: {
debugger;
}
expect: {
debugger;
}
}
drop_debugger: {
options = {
drop_debugger: true
};
input: {
debugger;
if (foo) debugger;
}
expect: {
if (foo);
}
}
ype='application/atom+xml'/>
Age | Commit message (Collapse) | Author |
|
This is a followup to 22f95e028f038cee342f455dfc55bd32b804907c.
* tests/scripts.scm: Use (guix tests).
|
|
* tests/scripts.scm (with-environment-variable): Move to...
* guix/tests.scm (with-environment-variable): ... here.
* tests/build-utils.scm ("wrap-program, one input, multiple calls"):
Use it instead of 'setenv'.
|