Home | History | Annotate | Line # | Download | only in unit-tests
      1 begin combined
      2 
      3 silent=no always=no ignerr=no
      4 echo running
      5 
      6 silent=no always=no ignerr=yes
      7 echo running; false
      8 
      9 silent=no always=yes ignerr=no
     10 echo running
     11 running
     12 
     13 silent=no always=yes ignerr=yes
     14 echo running; false
     15 running
     16 *** Error code 1 (ignored)
     17 
     18 silent=yes always=no ignerr=no
     19 echo running
     20 
     21 silent=yes always=no ignerr=yes
     22 echo running; false
     23 
     24 silent=yes always=yes ignerr=no
     25 echo running
     26 running
     27 
     28 silent=yes always=yes ignerr=yes
     29 echo running; false
     30 running
     31 *** Error code 1 (ignored)
     32 
     33 end combined
     34 exit status 0
     35