with-accepted-exit-codes¶
- (with-accepted-exit-codes <pred> <DSL>)
Added in version 2.0.
Specifies the list of expected exit codes for the programs executed in
<DSL>
.<pred>
is a predicate on integer values, and it’s specified using the Predicate Language.<DSL>
can only contain nested occurrences ofrun
,bash
,system
,chdir
,setenv
,ignore-<outputs>
,with-stdin-from
, andwith-<outputs>-to
.Example:
(with-accepted-exit-codes (or 1 2) (run false))