You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.6 KiB

#!/bin/bash
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# wrap execution of sledge with time and memory limits
# and add status entries to report in case of an unexpected exit
# usage: wrap.sh <timeout(sec)> <memout(GB)> <command> <testdir/testname>
set -u
timeout=$1
memout=$(( $2*1024*1024 ))
command=${@: 3: $#-3}
test=${@: -1}
unknown_error () {
echo "((name $test)(entry(Status(UnknownError \"$1\"))))" >> $test.sexp
}
assert () {
echo "((name $test)(entry(Status(Assert \"$1\"))))" >> $test.sexp
}
abort () {
if grep -q "Assertion failed" $test.err;
then
assert "$(\
grep "Assertion failed" $test.err \
| sed 's/</\</g;s/>/\>/g;s/Assertion failed: (\(.*\)), function.*/\1/' \
| sed 's/"/\\\"/g' )"
else
echo "((name $test)(entry(Status Abort)))" >> $test.sexp
fi
}
timeout () {
echo "((name $test)(entry(Status Timeout)))" >> $test.sexp
}
memout () {
echo "((name $test)(entry(Status Memout)))" >> $test.sexp
}
(
ulimit -t $timeout -v $memout
$command -report $test.sexp $test 1> $test.out 2> $test.err
) &> /dev/null
status=$?
case $status in
( 0 | 1 ) ;;
( 132 ) unknown_error "illegal instruction" ;;
( 136 ) unknown_error "floating-point exception" ;;
( 139 ) unknown_error "segmentation violation" ;;
( 127 ) memout ;;
( 134 ) abort ;;
( 137 | 152 ) timeout ;;
( * ) unknown_error "exit $status" ;;
esac
(test -f $test.sexp && grep -q "Status" $test.sexp) \
|| unknown_error "exit $status"
exit $status