blob: 067eee1d12fe479f00476795546fd6ea208bc596 [file] [log] [blame]
#!/bin/bash
# The MIT License (MIT)
#
# Copyright (c) 2015 Microsoft Corporation
#
# -=- Robust Distributed System Nucleus (rDSN) -=-
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
if [ -z "${REPORT_DIR}" ]; then
REPORT_DIR="."
fi
while read -r -a line; do
test_case=${line[0]}
gtest_filter=${line[1]}
output_xml="${REPORT_DIR}/dsn.failure_detector.tests_${test_case/.ini/.xml}"
echo "============ run dsn.failure_detector.tests ${test_case} with gtest_filter ${gtest_filter} ============"
./clear.sh
GTEST_OUTPUT="xml:${output_xml}" GTEST_FILTER=${gtest_filter} ./dsn.failure_detector.tests ${test_case}
if [ $? -ne 0 ]; then
echo "run dsn.failure_detector.tests $test_case failed"
echo "---- ls ----"
ls -l
if [ `find . -name pegasus.log.* | wc -l` -ne 0 ]; then
echo "---- tail -n 100 pegasus.log.* ----"
tail -n 100 `find . -name pegasus.log.*`
fi
if [ -f core ]; then
echo "---- gdb ./dsn.failure_detector.tests core ----"
gdb ./dsn.failure_detector.tests core -ex "thread apply all bt" -ex "set pagination 0" -batch
fi
exit 1
fi
echo "============ done dsn.failure_detector.tests ${test_case} with gtest_filter ${gtest_filter} ============"
done <gtest.filter