2017-08-04 04:25:20 +00:00
|
|
|
|
|
|
|
####################
|
2017-08-04 03:56:14 +00:00
|
|
|
# Command sub just under the limit should succeed
|
2017-08-04 04:25:20 +00:00
|
|
|
|
|
|
|
####################
|
2017-08-04 03:56:14 +00:00
|
|
|
# Command sub at the limit should fail
|
2018-11-28 14:27:21 +00:00
|
|
|
fish: Too much data emitted by command substitution so it was discarded
|
2017-07-27 03:17:04 +00:00
|
|
|
|
|
|
|
set b (string repeat -n 512 x)
|
|
|
|
^
|
2017-08-04 04:25:20 +00:00
|
|
|
|
|
|
|
####################
|
2017-08-04 03:56:14 +00:00
|
|
|
# Command sub over the limit should fail
|
2018-11-28 14:27:21 +00:00
|
|
|
fish: Too much data emitted by command substitution so it was discarded
|
2017-07-27 03:17:04 +00:00
|
|
|
|
2018-02-12 03:34:12 +00:00
|
|
|
set -l x (string repeat -n $argv x)
|
|
|
|
^
|
2019-03-26 16:10:56 +00:00
|
|
|
in function 'subme' with arguments '513'
|
2017-07-27 03:17:04 +00:00
|
|
|
in command substitution
|
|
|
|
|
2017-08-04 04:25:20 +00:00
|
|
|
####################
|
2017-08-04 03:56:14 +00:00
|
|
|
# Make sure output from builtins outside of command substitution is not affected
|
2017-08-04 04:25:20 +00:00
|
|
|
|
|
|
|
####################
|
2017-07-27 03:17:04 +00:00
|
|
|
# Same builtin in a command substitution is affected
|
2018-11-28 14:27:21 +00:00
|
|
|
fish: Too much data emitted by command substitution so it was discarded
|
2017-07-27 03:17:04 +00:00
|
|
|
|
|
|
|
echo this will fail (string repeat --max 513 b) to output anything
|
|
|
|
^
|