author | Adam Simpkins <simpkins@fb.com> |
Tue, 27 Jun 2017 17:24:31 -0700 | |
changeset 33116 | 6c113a7dec52 |
parent 29219 | 3c9066ed557c |
child 33204 | ddd65b4f3ae6 |
permissions | -rw-r--r-- |
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 |
||
33116
6c113a7dec52
tests: use the system hg for examining the local repository
Adam Simpkins <simpkins@fb.com>
parents:
29219
diff
changeset
|
8 |
$ syshg files 'set:**.py and not exec() and grep(r"^#!.*?python")' |
27569 | 9 |
[1] |
10 |
||
11 |
look for python scripts with execute bit but not shebang |
|
12 |
||
33116
6c113a7dec52
tests: use the system hg for examining the local repository
Adam Simpkins <simpkins@fb.com>
parents:
29219
diff
changeset
|
13 |
$ syshg files 'set:**.py and exec() and not grep(r"^#!.*?python")' |
27569 | 14 |
[1] |
15 |
||
16 |
look for shell scripts with execute bit but not shebang |
|
17 |
||
33116
6c113a7dec52
tests: use the system hg for examining the local repository
Adam Simpkins <simpkins@fb.com>
parents:
29219
diff
changeset
|
18 |
$ syshg files 'set:**.sh and exec() and not grep(r"^#!.*(ba)?sh")' |
27569 | 19 |
[1] |
20 |
||
21 |
look for non scripts with no shebang |
|
22 |
||
33116
6c113a7dec52
tests: use the system hg for examining the local repository
Adam Simpkins <simpkins@fb.com>
parents:
29219
diff
changeset
|
23 |
$ syshg files 'set:exec() and not **.sh and not **.py and not grep(r"^#!")' |
27569 | 24 |
[1] |