5604d0f9 | 25-Jul-2017 |
Li-Wen Hsu <lwhsu@FreeBSD.org> |
Make this test case accepts basename() in D script returns "" or "."
In Solaris, basename(1) and basename(3) both return "." while being given an empty string (""), while in BSD (and Linux) basename
Make this test case accepts basename() in D script returns "" or "."
In Solaris, basename(1) and basename(3) both return "." while being given an empty string (""), while in BSD (and Linux) basename(1) returns "" and basename(3) returns "."
While here, also change #!/usr/bin/ksh to #!/usr/bin/env ksh to find ksh in $PATH
Reviewed by: gnn, markj (earlier version), ngie (earlier version) Differential Revision: https://reviews.freebsd.org/D11707
show more ...
|
4ca0dfa6 | 25-Jul-2017 |
Li-Wen Hsu <lwhsu@FreeBSD.org> |
Explicitly set dynamic variable buffer size.
We added too many variable assignments in BEGIN block, which will run out of default auto-configured variable buffer space. The test VM has 4G RAM which
Explicitly set dynamic variable buffer size.
We added too many variable assignments in BEGIN block, which will run out of default auto-configured variable buffer space. The test VM has 4G RAM which should be enough for most cases so it's reasonable to increase limitation to these case.
Reviewed by: gnn Differential Revision: https://reviews.freebsd.org/D11676
show more ...
|