Suppress a warning from grep which causes tests to fail. Taken from upstream pull request: https://github.com/aureliojargas/clitest/pull/54 diff --git a/test/inline-match-egrep.sh b/test/inline-match-egrep.sh --- a/test/inline-match-egrep.sh +++ b/test/inline-match-egrep.sh @@ -42,7 +42,7 @@ $ printf ' \t \t\t \n' #=> --egrep ^ $ # egrep regexes. You'll need to test in your system if that's the # case. I recommend using a literal tab to avoid problems. -$ printf 'may\tfail' #=> --egrep ^may\tfail$ +$ printf 'may\tfail' #=> --egrep ^may\\tfail$ $ printf 'may\tfail' #=> --egrep ^may[\t]fail$ $ printf 'will\tmatch' #=> --egrep ^will match$ @@ -51,7 +51,7 @@ $ printf 'will\tmatch' #=> --egrep ^will match$ # These tests will fail: $ printf 'will\nfail' #=> --egrep will.*fail -$ printf 'will\nfail' #=> --egrep will\nfail +$ printf 'will\nfail' #=> --egrep will\\nfail # If one line of a multiline results matches, the test is OK a>summaryrefslogtreecommitdiff
path: root/gnu/services/ci.scm
AgeCommit message (Expand)Author
2022-01-11services: laminar: Set LAMINAR_BIND_RPC environment variable....Earlier, the bind-rpc field of <laminar-configuration> was not used at all. This was a bug. * gnu/services/ci.scm (laminar-shepherd-service): Use bind-rpc to set LAMINAR_BIND_RPC environment variable. Arun Isaac
2021-06-10services: laminar: Create parent directory for unix socket....* gnu/services/ci.scm (laminar-activation): New function. (laminar-service-type): Extend activation-service-type with laminar-activation. Arun Isaac