ソースを参照

Wrapper script to run all tests from qemu

Signed-off-by: Graham MacDonald <grahamamacdonald@gmail.com>
Graham MacDonald 5 年 前
コミット
5eff89662d
1 ファイル変更8 行追加0 行削除
  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