mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-08 10:09:54 +00:00
Fixes Travis post-mortem script dump following review
Changes made: * Added copyright and project statement * Limited size of each file to dump to 1Mbyte * Changed name of script
This commit is contained in:
parent
371a9e0ae9
commit
6eaf3659ea
|
@ -20,7 +20,7 @@ script:
|
||||||
- tests/scripts/curves.pl
|
- tests/scripts/curves.pl
|
||||||
- tests/scripts/key-exchanges.pl
|
- tests/scripts/key-exchanges.pl
|
||||||
after_failure:
|
after_failure:
|
||||||
- tests/scripts/travis-log.sh
|
- tests/scripts/travis-log-failure.sh
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
secure: "barHldniAfXyoWOD/vcO+E6/Xm4fmcaUoC9BeKW+LwsHqlDMLvugaJnmLXkSpkbYhVL61Hzf3bo0KPJn88AFc5Rkf8oYHPjH4adMnVXkf3B9ghHCgznqHsAH3choo6tnPxaFgOwOYmLGb382nQxfE5lUdvnM/W/psQjWt66A1+k="
|
secure: "barHldniAfXyoWOD/vcO+E6/Xm4fmcaUoC9BeKW+LwsHqlDMLvugaJnmLXkSpkbYhVL61Hzf3bo0KPJn88AFc5Rkf8oYHPjH4adMnVXkf3B9ghHCgznqHsAH3choo6tnPxaFgOwOYmLGb382nQxfE5lUdvnM/W/psQjWt66A1+k="
|
||||||
|
|
|
@ -1,10 +1,18 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# travis-log-failure.sh
|
||||||
|
#
|
||||||
|
# This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2016, ARM Limited, All Rights Reserved
|
||||||
|
#
|
||||||
|
# Purpose
|
||||||
|
#
|
||||||
# List the server and client logs on failed ssl-opt.sh and compat.sh tests.
|
# List the server and client logs on failed ssl-opt.sh and compat.sh tests.
|
||||||
# This script is used to make the logs show up in the Travis test results.
|
# This script is used to make the logs show up in the Travis test results.
|
||||||
|
#
|
||||||
# Some of the logs can be very long: this means usually a couple of megabytes
|
# Some of the logs can be very long: this means usually a couple of megabytes
|
||||||
# but it can bee much more. For example, the client log of test 273 in ssl-opt.sh
|
# but it can be much more. For example, the client log of test 273 in ssl-opt.sh
|
||||||
# is more than 630 Megabytes long.
|
# is more than 630 Megabytes long.
|
||||||
|
|
||||||
if [ -d include/mbedtls ]; then :; else
|
if [ -d include/mbedtls ]; then :; else
|
||||||
|
@ -13,13 +21,14 @@ if [ -d include/mbedtls ]; then :; else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
FILES="o-srv-*.log o-cli-*.log c-srv-*.log c-cli-*.log o-pxy-*.log"
|
FILES="o-srv-*.log o-cli-*.log c-srv-*.log c-cli-*.log o-pxy-*.log"
|
||||||
|
MAX_LOG_SIZE=1048576
|
||||||
|
|
||||||
for PATTERN in $FILES; do
|
for PATTERN in $FILES; do
|
||||||
for LOG in $( ls tests/$PATTERN 2>/dev/null ); do
|
for LOG in $( ls tests/$PATTERN 2>/dev/null ); do
|
||||||
echo
|
echo
|
||||||
echo "****** BEGIN file: $LOG ******"
|
echo "****** BEGIN file: $LOG ******"
|
||||||
echo
|
echo
|
||||||
cat $LOG
|
tail -c $MAX_LOG_SIZE $LOG
|
||||||
echo "****** END file: $LOG ******"
|
echo "****** END file: $LOG ******"
|
||||||
echo
|
echo
|
||||||
rm $LOG
|
rm $LOG
|
Loading…
Reference in a new issue