Port eval tests to littlecheck

This commit is contained in:
Fabian Homborg
2019-07-03 12:54:42 +02:00
parent 8013686d17
commit 87b05d3111
4 changed files with 46 additions and 61 deletions

46
tests/checks/eval.fish Normal file
View File

@@ -0,0 +1,46 @@
# RUN: %fish %s
# Regression test for issue #4443
eval set -l previously_undefined foo
echo $previously_undefined
# CHECK: foo
# Test redirection
eval "echo you can\\'t see this 1>&2" 2>/dev/null
# Test return statuses
false; eval true; echo $status
# CHECK: 0
false; eval false; echo $status
# CHECK: 1
# Test return status in case of parsing error
false; eval "("; echo $status
# CHECK: 1
# CHECKERR: tests/checks/eval.fish (line {{\d+}}): Unexpected end of string, expecting ')'
# CHECKERR: (
# CHECKERR: ^
false; eval '""'; echo $status
# CHECK: 1
# CHECKERR: tests/checks/eval.fish (line {{\d+}}): The expanded command was empty.
# CHECKERR: ""
# CHECKERR: ^
function empty
end
# Regression tests for issue #5692
false; eval;
echo blank eval: $status # 0
# CHECK: blank eval: 0
false; eval "";
echo empty arg eval: $status # 0
# CHECK: empty arg eval: 0
false; eval empty;
echo empty function eval $status # 0
# CHECK: empty function eval 0
false; eval "begin; end;";
echo empty block eval: $status # 0
# CHECK: empty block eval: 0

View File

@@ -1,13 +0,0 @@
####################
# Testing eval builtin
fish: Unexpected end of string, expecting ')'
(
^
fish: The expanded command was empty.
""
^
####################
# Testing eval with empty functions, blocks, and arguments

View File

@@ -1,33 +0,0 @@
logmsg "Testing eval builtin"
# Regression test for issue #4443
eval set -l previously_undefined foo
echo $previously_undefined
# Test redirection
eval "echo you can\\'t see this 1>&2" 2>/dev/null
# Test return statuses
false; eval true; echo $status # 0
false; eval false; echo $status # 1
# Test return status in case of parsing error
false; eval "("; echo $status # 1
false; eval '""'; echo $status # 1
function empty
end
# Regression tests for issue #5692
logmsg "Testing eval with empty functions, blocks, and arguments"
false; eval;
echo blank eval: $status # 0
false; eval "";
echo empty arg eval: $status # 0
false; eval empty;
echo empty function eval $status # 0
false; eval "begin; end;";
echo empty block eval: $status # 0

View File

@@ -1,15 +0,0 @@
####################
# Testing eval builtin
foo
0
1
1
1
####################
# Testing eval with empty functions, blocks, and arguments
blank eval: 0
empty arg eval: 0
empty function eval 0
empty block eval: 0