2021-02-20 20:04:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
2024-08-02 14:09:43 +00:00
|
|
|
# Need to keep error from tests after `tee`. Otherwise we don't alert on asan errors
|
|
|
|
set -o pipefail
|
|
|
|
set -e
|
2021-02-20 20:04:24 +00:00
|
|
|
|
2024-08-01 16:59:17 +00:00
|
|
|
if [ "$#" -ne 1 ]; then
|
|
|
|
echo "Expected exactly one argument"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$1" = "GDB" ];
|
|
|
|
then
|
|
|
|
timeout 40m \
|
|
|
|
gdb -q -ex "set print inferior-events off" -ex "set confirm off" -ex "set print thread-events off" -ex run -ex bt -ex quit --args \
|
|
|
|
./unit_tests_dbms --gtest_output='json:test_output/test_result.json' \
|
|
|
|
| tee test_output/test_result.txt
|
|
|
|
elif [ "$1" = "NO_GDB" ];
|
|
|
|
then
|
|
|
|
timeout 40m \
|
|
|
|
./unit_tests_dbms --gtest_output='json:test_output/test_result.json' \
|
|
|
|
| tee test_output/test_result.txt
|
|
|
|
else
|
|
|
|
echo "Unknown argument: $1"
|
|
|
|
exit 1
|
|
|
|
fi
|