Mercurial > hg
annotate tests/test-check-execute.t @ 28337:869e65e68aee
tests: Solaris cmp complains about empty files, even with -s
When you compare an empty file, such as /dev/null, with a non-empty file,
Solaris cmp complains on stderr with "cmp: EOF on /dev/null", even if the
-s argument is present. GNU cmp makes the complaint, but silences it with
-s. We can change the pdiff utility to simply redirect stderr to /dev/null
so that we don't have to worry about this difference in the test files.
author | Danek Duvall <danek.duvall@oracle.com> |
---|---|
date | Wed, 02 Mar 2016 14:58:29 -0800 |
parents | b3eba79b7e04 |
children | 3c9066ed557c |
rev | line source |
---|---|
27569 | 1 #require test-repo execbit |
2 | |
3 $ cd "`dirname "$TESTDIR"`" | |
4 | |
5 look for python scripts without the execute bit | |
6 | |
7 $ hg files 'set:**.py and not exec() and grep(r"^#!.*?python")' | |
8 [1] | |
9 | |
10 look for python scripts with execute bit but not shebang | |
11 | |
12 $ hg files 'set:**.py and exec() and not grep(r"^#!.*?python")' | |
13 [1] | |
14 | |
15 look for shell scripts with execute bit but not shebang | |
16 | |
17 $ hg files 'set:**.sh and exec() and not grep(r"^#!.*(ba)?sh")' | |
18 [1] | |
19 | |
20 look for non scripts with no shebang | |
21 | |
22 $ hg files 'set:exec() and not **.sh and not **.py and not grep(r"^#!")' | |
23 [1] |