Mercurial > hg
view tests/test-check-shbang.t @ 28879:8c1759a2bdf4
tests: add new test for #! shebang lines
* use #!/bin/sh not e.g. #!/usr/bin/sh
* use #!/usr/bin/env python not e.g. #!/usr/bin/python
author | timeless <timeless@mozdev.org> |
---|---|
date | Wed, 06 Apr 2016 19:09:12 +0000 |
parents | tests/test-check-execute.t@b3eba79b7e04 |
children | 3c9066ed557c |
line wrap: on
line source
#require test-repo $ cd "`dirname "$TESTDIR"`" look for python scripts that do not use /usr/bin/env $ hg files 'set:grep(r"^#!.*?python") and not grep(r"^#!/usr/bin/env python")' [1] look for shell scripts that do not use /bin/sh $ hg files 'set:grep(r"^#!.*/bin/sh") and not grep(r"^#!/bin/sh")' [1]