'ls.scm' monkey-patches (ice-9 getopt-long) to allow it to recognize '-1' as a valid option. Unfortunately, monkey patching no longer works with Guile 3.0 due to inlining, so change the test to make do without '-1'. diff --git a/tests/core-utils.org b/tests/core-utils.org index d35ede8..22718e3 100644 --- a/tests/core-utils.org +++ b/tests/core-utils.org @@ -93,14 +93,11 @@ * ls :script: #+begin_src sh - ls -1 tests/data/star + ls tests/data/star #+end_src :stdout: #+begin_example - 0 - 1 - 2 - 3 + 0 1 2 3 #+end_example * test-file e='id' value='10e51d6dde2293ed5f5bf95d505c0b89c5db8f89'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/herd.scm
AgeCommit message (Expand)Author
2022-05-28services: herd: Add 'wait-for-service'....* gnu/services/herd.scm (wait-for-service): New procedure. Ludovic Courtès
2022-04-10services: herd: Report whether a service is transient....* gnu/services/herd.scm (<live-service>)[transient?]: New field. (current-services): Check the value of 'transient?'. Call 'resolve-transients'. (resolve-transients): New procedure. Ludovic Courtès