From cc37c98671853b9118e3b0a754938421aa3fa5f8 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Fri, 13 Dec 2019 01:41:15 -0500 Subject: [PATCH] keep the main index page slim Signed-off-by: Jason Etheridge --- qa/test.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qa/test.sh b/qa/test.sh index aacae6509..c32b55c25 100755 --- a/qa/test.sh +++ b/qa/test.sh @@ -37,7 +37,10 @@ cp $LOCAL_QA_GIT_PATH/qa/test_output.css $TESTDIR cp $LOCAL_QA_GIT_PATH/qa/test_output.css . echo '

Testing in progress

[Previous Runs]' > $TESTDIR/test.html (cd $TESTDIR ; ln -s test.html index.html) -echo '
  • '$TEST_SUBDIR'' `cat index.html` > index.html +mv run.list run.list.old +echo '
  • '$TEST_SUBDIR'' > run.list +head -5 run.list.old >> run.list +echo '

    Most recent runs:

    ' > index.html echo "*** Ready to test!" echo -n "*** Test starting ... " -- 2.11.0