fish-shell/tests/checks/exec.fish

26 lines
750 B
Fish
Raw Normal View History

2020-02-08 09:38:11 +00:00
#RUN: %fish %s
exec cat <nosuchfile
2020-02-08 09:38:11 +00:00
#CHECKERR: warning: An error occurred while redirecting file 'nosuchfile'
#CHECKERR: open: No such file or directory
echo "failed: $status"
#CHECK: failed: 1
not exec cat <nosuchfile
2020-02-08 09:38:11 +00:00
#CHECKERR: warning: An error occurred while redirecting file 'nosuchfile'
#CHECKERR: open: No such file or directory
echo "neg failed: $status"
#CHECK: neg failed: 0
set -l f (mktemp)
echo "#!/bin/sh"\r\n"echo foo" > $f
chmod +x $f
# Cheesy sleep to avoid "text file is busy"
sleep 0.2
$f
#CHECKERR: Failed to execute process '{{.*}}'. Reason:
#CHECKERR: The file uses windows line endings (\r\n). Run dos2unix or similar to fix it.
# This needs to be last, because it actually runs exec.
exec cat </dev/null
2020-02-08 09:38:11 +00:00
echo "not reached"