commit 4f8c064dd03b39ff214733ab69fb49662e75a8dd
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Mon Aug 17 22:55:54 2015 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Mon Aug 17 22:55:54 2015 +0200

    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

diff --git a/cc1/tests/chktest.sh b/cc1/tests/chktest.sh
index bcbc1ec..84682c2 100755
--- a/cc1/tests/chktest.sh
+++ b/cc1/tests/chktest.sh
@@ -23,7 +23,7 @@ do
        /^output:$/ {
                copyon=1
        }
-       /^\*/  {
+       /^\*\//  {
                copyon=0
        }
        copyon==1 && !/^output:$/  {

Reply via email to