This repository has been archived on 2022-06-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ORB_SLAM3_linux/Thirdparty/Sophus/py/run_tests.sh
Ivan c63e1ff208 v1
2022-06-08 17:41:00 +03:00

14 lines
287 B
Bash
Executable File

#!/bin/bash
EXIT=0
python3 -m sophus.complex || EXIT=$?
python3 -m sophus.quaternion || EXIT=$?
python3 -m sophus.dual_quaternion || EXIT=$?
python3 -m sophus.so2 || EXIT=$?
python3 -m sophus.se2 || EXIT=$?
python3 -m sophus.so3 || EXIT=$?
python3 -m sophus.se3 || EXIT=$?
exit $EXIT