summaryrefslogtreecommitdiffstats
path: root/recipes-test/systest-runner/files/systest-runner
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2013-12-12 17:36:38 +0100
committerAdrian Dudau <adrian.dudau@enea.com>2013-12-12 17:36:38 +0100
commit2a7348129a42f21095fcd62e47a035f78d254130 (patch)
tree544dc8019a8f8cb684ace8674193605e607f9964 /recipes-test/systest-runner/files/systest-runner
downloadmeta-enea-2a7348129a42f21095fcd62e47a035f78d254130.tar.gz
initial commit of Enea Linux 3.1HEADmaster
Migrated from the internal git server on the dora-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'recipes-test/systest-runner/files/systest-runner')
-rw-r--r--recipes-test/systest-runner/files/systest-runner16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes-test/systest-runner/files/systest-runner b/recipes-test/systest-runner/files/systest-runner
new file mode 100644
index 0000000..f549954
--- /dev/null
+++ b/recipes-test/systest-runner/files/systest-runner
@@ -0,0 +1,16 @@
1#!/bin/sh
2
3cd /usr/lib/systest-runner/tests >/dev/null
4
5for x in *
6do
7 echo $x
8 if [[ -f $x ]]; then
9 date +%Y-%m-%dT%H:%M
10 echo "BEGIN: $x"
11 ./$x
12 echo "END: $x"
13 date +%Y-%m-%dT%H:%M
14 fi
15done
16