Mercurial > hg > nsaunier > traffic-intelligence
view run-tests.sh @ 1301:7e42f83aab1f
added utility to print recording durations from metadata
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Thu, 10 Jul 2025 16:15:55 -0400 |
| parents | 106365257da9 |
| children |
line wrap: on
line source
#!/bin/sh echo "------------" echo "Python tests" cd trafficintelligence ./run-tests.sh cd .. echo "------------" echo "C++ tests" if [ -f ./bin/tests ] then ./bin/tests else echo "The test executable has not been compiled" fi echo "------------" echo "Script tests" ./scripts/run-tests.sh echo "------------" echo "Documentation tests" TIWIKI_HOME=~/Research/Code/bb-traffic-intelligence/ if [ -f $TIWIKI_HOME/docs/run-tests.sh ] then cd $TIWIKI_HOME/docs/ ./run-tests.sh else echo "The documentation repository (BitBucket Traffic Intelligence repository is not accessible" echo "Please clone the BitBucket Traffic Intelligence repository:" echo "$ git clone https://bitbucket.org/Nicolas/trafficintelligence.git" fi
