Mercurial > hg
annotate tests/test-check-execute.t @ 29716:37b6f0ec6241
check-commit: allow underbars in cffi_-prefix function names
It seems reasonable to give cffi functions slightly more verbose names
in some circumstances, given the way they interface with C.
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 05 Aug 2016 17:27:51 -0400 |
parents | 3c9066ed557c |
children | 6c113a7dec52 |
rev | line source |
---|---|
27569 | 1 #require test-repo execbit |
2 | |
29219
3c9066ed557c
tests: silence test-repo obsolete warning
timeless <timeless@mozdev.org>
parents:
27569
diff
changeset
|
3 $ . "$TESTDIR/helpers-testrepo.sh" |
27569 | 4 $ cd "`dirname "$TESTDIR"`" |
5 | |
6 look for python scripts without the execute bit | |
7 | |
8 $ hg files 'set:**.py and not exec() and grep(r"^#!.*?python")' | |
9 [1] | |
10 | |
11 look for python scripts with execute bit but not shebang | |
12 | |
13 $ hg files 'set:**.py and exec() and not grep(r"^#!.*?python")' | |
14 [1] | |
15 | |
16 look for shell scripts with execute bit but not shebang | |
17 | |
18 $ hg files 'set:**.sh and exec() and not grep(r"^#!.*(ba)?sh")' | |
19 [1] | |
20 | |
21 look for non scripts with no shebang | |
22 | |
23 $ hg files 'set:exec() and not **.sh and not **.py and not grep(r"^#!")' | |
24 [1] |