fish-shell/tests/checks/pipestatus.fish

98 lines
3.2 KiB
Fish
Raw Normal View History

2020-02-08 03:49:42 +08:00
#RUN: %fish %s
2019-02-25 13:45:59 +08:00
2020-02-08 03:49:42 +08:00
# pipestatus variable - builtins only
2019-02-25 13:45:59 +08:00
false | false | false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 1 1 : 1
2019-02-25 13:45:59 +08:00
true | true | true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 0 : 0
2019-02-25 13:45:59 +08:00
false | true | false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 0 1 : 1
2019-02-25 13:45:59 +08:00
true | false | true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 1 0 : 0
2019-02-25 13:45:59 +08:00
2020-02-08 03:49:42 +08:00
# pipestatus variable - no builtins
2019-02-25 13:45:59 +08:00
command false | command false | command false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 1 1 : 1
2019-02-25 13:45:59 +08:00
command true | command true | command true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 0 : 0
2019-02-25 13:45:59 +08:00
command false | command true | command false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 0 1 : 1
2019-02-25 13:45:59 +08:00
command true | command false | command true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 1 0 : 0
2019-02-25 13:45:59 +08:00
2020-02-08 03:49:42 +08:00
# pipestatus variable - mixed
2019-02-25 13:45:59 +08:00
command false | command false | false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 1 1 : 1
2019-02-25 13:45:59 +08:00
command true | true | command true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 0 : 0
2019-02-25 13:45:59 +08:00
false | command true | command false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 0 1 : 1
2019-02-25 13:45:59 +08:00
true | false | command true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 1 0 : 0
2019-02-25 13:45:59 +08:00
sh -c 'exit 5' | sh -c 'exit 2'; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 5 2 : 2
2019-02-25 13:45:59 +08:00
sh -c 'exit 3' | false | sh -c 'exit 6'; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 3 1 6 : 6
2019-02-25 13:45:59 +08:00
sh -c 'exit 9' | true | sh -c 'exit 3' | false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 9 0 3 1 : 1
2019-02-25 13:45:59 +08:00
2020-02-08 03:49:42 +08:00
# pipestatus variable - non-pipe
2019-02-25 13:45:59 +08:00
true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 : 0
2019-02-25 13:45:59 +08:00
false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 : 1
2019-02-25 13:45:59 +08:00
command true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 : 0
2019-02-25 13:45:59 +08:00
command false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 : 1
2019-02-25 13:45:59 +08:00
sh -c 'exit 4'; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 4 : 4
2019-02-25 13:45:59 +08:00
2020-02-08 03:49:42 +08:00
# pipestatus variable - negate
2019-02-25 13:45:59 +08:00
! true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 : 1
2019-02-25 13:45:59 +08:00
! false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 : 0
2019-02-25 13:45:59 +08:00
! false | false | false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 1 1 : 0
2019-02-25 13:45:59 +08:00
! true | command true | true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 0 : 1
2019-02-25 13:45:59 +08:00
! false | true | command false; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 0 1 : 0
2019-02-25 13:45:59 +08:00
! command true | command false | command true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 1 0 : 1
2019-02-25 13:45:59 +08:00
! sh -c 'exit 9' | true | sh -c 'exit 3'; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 9 0 3 : 0
2019-02-25 13:45:59 +08:00
2020-02-08 03:49:42 +08:00
# pipestatus variable - block
2019-02-25 13:45:59 +08:00
begin; true; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 : 0
2019-02-25 13:45:59 +08:00
begin; false; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 : 1
2019-02-25 13:45:59 +08:00
begin; ! true; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 : 1
2019-02-25 13:45:59 +08:00
begin; ! false; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 : 0
2019-02-25 13:45:59 +08:00
true | begin; true; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 : 0
2019-02-25 13:45:59 +08:00
false | begin; false; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 1 : 1
2019-02-25 13:45:59 +08:00
true | begin; ! true; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 1 : 1
2019-02-25 13:45:59 +08:00
false | begin; ! false; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 0 : 0
2019-02-25 13:45:59 +08:00
begin; true | false; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 1 : 1
2019-02-25 13:45:59 +08:00
begin; false | true; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 0 : 0
2019-02-25 13:45:59 +08:00
begin; ! true; end | false ; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 1 1 : 1
2019-02-25 13:45:59 +08:00
begin; ! false; end | true; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 : 0
2019-02-25 13:45:59 +08:00
begin; sh -c 'exit 3'; end | begin; sh -c 'exit 5'; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 3 5 : 5
2019-02-25 13:45:59 +08:00
begin; ! sh -c 'exit 3'; end | begin; sh -c 'exit 5'; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 5 : 5
2019-02-25 13:45:59 +08:00
begin; ! sh -c 'exit 3'; end | begin; ! sh -c 'exit 5'; end; echo $pipestatus : $status
2020-02-08 03:49:42 +08:00
#CHECK: 0 0 : 0