mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7 lines
242 B
Bash
Executable File
7 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export PYTHONPATH=pybind
|
|
rm -f crash.out.txt exit.out.txt
|
|
gdb -q -x $(readlink -e $(dirname $0))/gdb-filter.py --args /usr/bin/python3 -m pytest ../test/
|
|
test -e crash.out.txt && cat crash.out.txt
|
|
exit $(cat exit.out.txt)
|