changeset 539:53587cc86f7d

added one test script that runs C++, Python and future script tests
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 04 Jul 2014 13:08:58 -0400
parents bd1ad468e928
children 4fdce0f09ece
files run-tests.sh scripts/run-tests.sh
diffstat 2 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run-tests.sh	Fri Jul 04 13:08:58 2014 -0400
@@ -0,0 +1,15 @@
+#!/bin/sh
+echo "------------"
+echo "Python tests"
+cd python
+./run-tests.sh
+cd ..
+echo "------------"
+echo "C++ tests"
+if [ -f ./bin/tests ]
+then
+    ./bin/tests
+fi
+echo "------------"
+echo "Script tests"
+./scripts/run-tests.sh
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/run-tests.sh	Fri Jul 04 13:08:58 2014 -0400
@@ -0,0 +1,2 @@
+#!/bin/sh
+echo 'no tests'
\ No newline at end of file