[hackers] [scc] Merge branch 'master' of ssh://suckless.org/gitrepos/scc || Roberto E. Vargas Caballero
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 Tue Aug 18 2015 - 10:02:56 CEST
This archive was generated by hypermail 2.3.0
: Tue Aug 18 2015 - 10:12:20 CEST