mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-04 00:58:46 +00:00
2d1a6561e1
(cherry picked from commit 3fbff14e9b
)
11 lines
158 B
Fish
11 lines
158 B
Fish
# RUN: %fish %s
|
|
|
|
# Ensure that jobs are printed with new lines escaped
|
|
|
|
sleep \
|
|
100 &
|
|
|
|
jobs
|
|
#CHECK: Job Group{{.*}}
|
|
# CHECK: 1{{.*\t}}sleep \\\n100 &
|
|
kill %1
|