aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core/job_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r--test/functional/core/job_spec.lua16
1 files changed, 10 insertions, 6 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua
index e833b5127d..75e09f3455 100644
--- a/test/functional/core/job_spec.lua
+++ b/test/functional/core/job_spec.lua
@@ -1265,12 +1265,16 @@ describe('jobs', function()
]])
feed(':q<CR>')
- screen:expect([[
- |
- [Process exited 0]^ |
- |*4
- {3:-- TERMINAL --} |
- ]])
+ if is_os('freebsd') then
+ screen:expect { any = vim.pesc('[Process exited 0]') }
+ else
+ screen:expect([[
+ |
+ [Process exited 0]^ |
+ |*4
+ {3:-- TERMINAL --} |
+ ]])
+ end
end)
end)