Revert "Update tests"

This reverts commit 36367e4882.
This commit is contained in:
Aaron Gyes
2018-11-28 06:27:21 -08:00
parent fe67cc4f6e
commit 5615351f27
8 changed files with 19 additions and 19 deletions

View File

@@ -4,14 +4,14 @@
####################
# Command sub at the limit should fail
../test/root/bin/fish: Too much data emitted by command substitution so it was discarded
fish: Too much data emitted by command substitution so it was discarded
set b (string repeat -n 512 x)
^
####################
# Command sub over the limit should fail
../test/root/bin/fish: Too much data emitted by command substitution so it was discarded
fish: Too much data emitted by command substitution so it was discarded
set -l x (string repeat -n $argv x)
^
@@ -28,7 +28,7 @@ in command substitution
####################
# Same builtin in a command substitution is affected
../test/root/bin/fish: Too much data emitted by command substitution so it was discarded
fish: Too much data emitted by command substitution so it was discarded
echo this will fail (string repeat --max 513 b) to output anything
^