mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 06:05:39 +00:00
Merge remote-tracking branch 'origin/pr/2727' into development
* origin/pr/2727: tests: Limit each log to 10 GiB
This commit is contained in:
commit
ff645d9838
|
@ -15,6 +15,10 @@
|
||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
|
# Limit the size of each log to 10 GiB, in case of failures with this script
|
||||||
|
# where it may output seemingly unlimited length error logs.
|
||||||
|
ulimit -f 20971520
|
||||||
|
|
||||||
# initialise counters
|
# initialise counters
|
||||||
TESTS=0
|
TESTS=0
|
||||||
FAILED=0
|
FAILED=0
|
||||||
|
|
|
@ -21,6 +21,10 @@
|
||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
|
# Limit the size of each log to 10 GiB, in case of failures with this script
|
||||||
|
# where it may output seemingly unlimited length error logs.
|
||||||
|
ulimit -f 20971520
|
||||||
|
|
||||||
if cd $( dirname $0 ); then :; else
|
if cd $( dirname $0 ); then :; else
|
||||||
echo "cd $( dirname $0 ) failed" >&2
|
echo "cd $( dirname $0 ) failed" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue