##// END OF EJS Templates
check-code: fix checking for sh style in .t tests...
Mads Kiilerich -
r14203:b230922e default
parent child Browse files
Show More
@@ -95,12 +95,13 b' utestpats = ['
95 []
95 []
96 ]
96 ]
97
97
98 for p, m in testpats[0] + testpats[1]:
98 for i in [0, 1]:
99 if p.startswith('^'):
99 for p, m in testpats[i]:
100 p = uprefix + p[1:]
100 if p.startswith('^'):
101 else:
101 p = uprefix + p[1:]
102 p = uprefix + p
102 else:
103 utestpats.append((p, m))
103 p = uprefix + p
104 utestpats[i].append((p, m))
104
105
105 utestfilters = [
106 utestfilters = [
106 (r"( *)(#([^\n]*\S)?)", repcomment),
107 (r"( *)(#([^\n]*\S)?)", repcomment),
@@ -11,7 +11,8 b' Tests discovery against servers without '
11
11
12 Setup HTTP server control:
12 Setup HTTP server control:
13
13
14 $ export remote=http://localhost:$HGPORT/
14 $ remote=http://localhost:$HGPORT/
15 $ export remote
15 $ start() {
16 $ start() {
16 > echo '[web]' > $1/.hg/hgrc
17 > echo '[web]' > $1/.hg/hgrc
17 > echo 'push_ssl = false' >> $1/.hg/hgrc
18 > echo 'push_ssl = false' >> $1/.hg/hgrc
General Comments 0
You need to be logged in to leave comments. Login now