Browse Source

Wrapper script to run all tests from qemu

Signed-off-by: Graham MacDonald <grahamamacdonald@gmail.com>
Graham MacDonald 5 years ago
parent
commit
5eff89662d
1 changed files with 8 additions and 0 deletions
  1. 8 0
      rc/bin/tests/runalltofile

+ 8 - 0
rc/bin/tests/runalltofile

@@ -0,0 +1,8 @@
+#!/bin/rc
+
+# Script to run all tests and output the results to file
+
+file=/tmp/runallresults.txt
+rm -f $file
+tests/runall >[2=1] > $file
+echo 'DONE' >> $file