ref: 4f8c064dd03b39ff214733ab69fb49662e75a8dd
parent: f03283b0bb20076bcdb814658bde66f5c042968c
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Mon Aug 17 18:55:54 EDT 2015
Fix small bug in chktest.sh The regural expression was matching only a * at the benginning of the line when the correct regular expression must match a * and a / at the beginnnig of the line
--- a/cc1/tests/chktest.sh
+++ b/cc1/tests/chktest.sh
@@ -23,7 +23,7 @@
/^output:$/ {
copyon=1
}
- /^\*/ {
+ /^\*\// {
copyon=0
}
copyon==1 && !/^output:$/ {