mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-16 04:52:44 +08:00
![Fabian Boehm](/assets/img/avatar_default.png)
We: 1. Set up a nice TMPDIR for our tests to use 2. Immediately `cd` to the directory containing the test runner. So instead we don't do (2), and stay in the temp directory, and explicitly use all the things from the test runner directory. I am fairly certain that cmake papered over this by adding a second layer of temp dir.
17 lines
368 B
Fish
17 lines
368 B
Fish
#RUN: %fish %s
|
|
|
|
ulimit --core-size
|
|
#CHECK: {{unlimited|\d+}}
|
|
ulimit --core-size 0
|
|
ulimit --core-size
|
|
#CHECK: 0
|
|
|
|
ulimit 4352353252352352334
|
|
#CHECKERR: ulimit: Invalid limit '4352353252352352334'
|
|
#CHECKERR:
|
|
#CHECKERR: {{.*}}checks/ulimit.fish (line {{\d+}}):
|
|
#CHECKERR: ulimit 4352353252352352334
|
|
#CHECKERR: ^
|
|
#CHECKERR: (Type 'help ulimit' for related documentation)
|
|
|