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'/>
aboutsummaryrefslogtreecommitdiff
path: root/tests/scripts.scm
AgeCommit message (Collapse)Author
2019-03-24tests: Add missing import.Ludovic Courtès
This is a followup to 22f95e028f038cee342f455dfc55bd32b804907c. * tests/scripts.scm: Use (guix tests).
2019-03-16tests: Add 'with-environment-variable'.Ludovic Courtès
* 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'.