2020-02-08 05:10:55 +08:00
|
|
|
#RUN: %fish %s
|
2019-02-09 19:34:00 +08:00
|
|
|
# Tests for the "builtin" builtin/keyword.
|
|
|
|
builtin -q string; and echo String exists
|
2020-02-08 05:10:55 +08:00
|
|
|
#CHECK: String exists
|
2019-02-09 19:34:00 +08:00
|
|
|
builtin -q; and echo None exists
|
|
|
|
builtin -q string echo banana; and echo Some of these exist
|
2020-02-08 05:10:55 +08:00
|
|
|
#CHECK: Some of these exist
|
2019-02-09 19:34:00 +08:00
|
|
|
builtin -nq string
|
2021-11-04 13:52:17 +08:00
|
|
|
#CHECKERR: builtin: invalid option combination, --query and --names are mutually exclusive
|
2019-02-09 19:34:00 +08:00
|
|
|
echo $status
|
2020-02-08 05:10:55 +08:00
|
|
|
#CHECK: 2
|
2019-02-09 19:34:00 +08:00
|
|
|
exit 0
|