mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 22:03:12 +00:00
8bf8b10f68
See the changelog additions for user-visible changes. Since we enable/disable terminal protocols whenever we pass terminal ownership, tests can no longer run in parallel on the same terminal. For the same reason, readline shortcuts in the gdb REPL will not work anymore. As a remedy, use gdbserver, or lobby for CSI u support in libreadline. Add sleep to some tests, otherwise they fall (both in CI and locally). There are two weird failures on FreeBSD remaining, disable them for now https://github.com/fish-shell/fish-shell/pull/10359/checks?check_run_id=23330096362 Design and implementation borrows heavily from Kakoune. In future, we should try to implement more of the kitty progressive enhancements. Closes #10359
64 lines
2.4 KiB
Fish
64 lines
2.4 KiB
Fish
#RUN: %fish -C 'set -l fish %fish' %s | %filter-ctrlseqs
|
|
time sleep 0
|
|
|
|
# These are a tad awkward because it picks the correct unit and adapts whitespace.
|
|
# The idea is that it's a table.
|
|
#CHECKERR: ________________________________________________________
|
|
#CHECKERR: Executed in {{[\d,.\s]*}} {{millis|micros|secs}} {{\s*}}fish {{\s*}}external
|
|
#CHECKERR: usr time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}}
|
|
#CHECKERR: sys time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}}
|
|
time for i in (seq 1 2)
|
|
echo banana
|
|
end
|
|
|
|
#CHECK: banana
|
|
#CHECK: banana
|
|
#CHECKERR: ________________________________________________________
|
|
#CHECKERR: Executed in {{[\d,.\s]*}} {{millis|micros|secs}} {{\s*}}fish {{\s*}}external
|
|
#CHECKERR: usr time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}}
|
|
#CHECKERR: sys time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}}
|
|
|
|
# Make sure we're not double-parsing
|
|
time echo 'foo -s bar'
|
|
#CHECK: foo -s bar
|
|
#CHECKERR: ________________________________________________________
|
|
#CHECKERR: Executed in {{[\d,.\s]*}} {{millis|micros|secs}} {{\s*}}fish {{\s*}}external
|
|
#CHECKERR: usr time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}}
|
|
#CHECKERR: sys time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}}
|
|
|
|
true && time a=b not builtin true | true
|
|
#CHECKERR: ___{{.*}}
|
|
#CHECKERR: {{.*}}
|
|
#CHECKERR: {{.*}}
|
|
#CHECKERR: {{.*}}
|
|
|
|
not time true
|
|
#CHECKERR: ___{{.*}}
|
|
#CHECKERR: {{.*}}
|
|
#CHECKERR: {{.*}}
|
|
#CHECKERR: {{.*}}
|
|
|
|
$fish -c 'time true&'
|
|
#CHECKERR: fish: {{.*}}
|
|
#CHECKERR: time true&
|
|
#CHECKERR: ^~~~~~~~~^
|
|
|
|
$fish -c 'not time true&'
|
|
#CHECKERR: fish: {{.*}}
|
|
#CHECKERR: not time true&
|
|
#FIXME: This error marks the entire statement. Would be cool to mark just `time true&`.
|
|
#CHECKERR: ^~~~~~~~~~~~~^
|
|
|
|
$fish -c 'echo Is it time yet | time cat'
|
|
#CHECKERR: fish: The 'time' command may only be at the beginning of a pipeline
|
|
#CHECKERR: echo Is it time yet | time cat
|
|
#CHECKERR: ^~~~~~~^
|
|
|
|
begin
|
|
printf '%s\n' "#!/bin/sh" 'echo No this is Patrick' > time
|
|
chmod +x time
|
|
set -l PATH .
|
|
echo Hello is this time | command time
|
|
# CHECK: No this is Patrick
|
|
end
|
|
rm time
|