From patchwork Mon Jun 11 23:02:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/2] live-image/fwts-frontend-text: adding support for both plaintext and html log out by default with --log-type From: Chris Van Hoof X-Patchwork-Id: 164276 Message-Id: <1339455774-18442-2-git-send-email-vanhoof@canonical.com> To: fwts-devel@lists.ubuntu.com Date: Mon, 11 Jun 2012 19:02:53 -0400 Signed-off-by: Chris Van Hoof Acked-by: Colin Ian King Acked-by: Keng-Yu Lin --- live-image/fwts-frontend-text | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/live-image/fwts-frontend-text b/live-image/fwts-frontend-text index b9c0c1f..90c0fc7 100755 --- a/live-image/fwts-frontend-text +++ b/live-image/fwts-frontend-text @@ -76,7 +76,7 @@ do_test() num_tests=`fwts $1 --show-tests | wc -l` num_tests=$((num_tests - 1)) if [ $num_tests -gt 0 ]; then - fwts --force-clean --skip-test=s3,s4 $1 --show-progress-dialog | dialog --backtitle "$FWTS" --title "$2" --gauge "" 13 80 0 + fwts --force-clean --skip-test=s3,s4 $1 --show-progress-dialog --log-type plaintext,html | dialog --backtitle "$FWTS" --title "$2" --gauge "" 13 80 0 fi } @@ -130,7 +130,7 @@ select_tests() dialog --backtitle "$FWTS" --title "No Tests Selected!" --msgbox \ " You did not select any tests to be run." 5 50 else - fwts --force-clean $run_tests --show-progress-dialog | dialog --backtitle "$FWTS" --title "$2" --gauge "" 15 80 0 + fwts --force-clean $run_tests --show-progress-dialog --log-type plaintext,html | dialog --backtitle "$FWTS" --title "$2" --gauge "" 15 80 0 done_tests_finish fi ;;