[hackers] [scc] Fix small bug in chktest.sh || Roberto E. Vargas Caballero

From: <git_AT_suckless.org>
Date: Mon, 17 Aug 2015 22:59:16 +0200 (CEST)

commit 4f8c064dd03b39ff214733ab69fb49662e75a8dd
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Mon Aug 17 22:55:54 2015 +0200
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
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
_AT_@ -23,7 +23,7 @@ do
         /^output:$/ {
                 copyon=1
         }
- /^\*/ {
+ /^\*\// {
                 copyon=0
         }
         copyon==1 && !/^output:$/ {
Received on Mon Aug 17 2015 - 22:59:16 CEST

This archive was generated by hypermail 2.3.0 : Mon Aug 17 2015 - 23:00:15 CEST