qemu-check.exp: print '#' progress marks for gp and pkcs11 tests

The string matching in qemu-check.exp is a bit too strict when it comes
to matching the xtest output to print progress marks. Only tests in the
'regression' suite are recognized. Now xtest supports 'gp' and 'pkcs11'
tests so a couple of regular expressions need to be updated.

Signed-off-by: Jerome Forissier <jerome@forissier.org>
Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
diff --git a/qemu-check.exp b/qemu-check.exp
index b16cf4d..3c26616 100644
--- a/qemu-check.exp
+++ b/qemu-check.exp
@@ -71,7 +71,7 @@
 set casenum "none"
 expect {
 	# Exit with error status as soon as a test fails
-	-re {  regression_([^ ]+) FAIL} {
+	-re {  ([^ ]+) FAIL} {
 		info " $expect_out(1,string) FAIL\n"
 		exit 1
 	}
@@ -80,7 +80,7 @@
 		exit 1
 	}
 	# Crude progress indicator: print one # when each test [sub]case starts
-	-re {([\*o]) regression_([^ ]+) } {
+	-re {([\*o]) ([^ ]+) } {
 		set casenum $expect_out(2,string)
 		if {$expect_out(1,string) == "o"} {
 			if {$star == 1} {