# HG changeset patch # User timeless # Date 1459969752 0 # Node ID 8c1759a2bdf41bfe7606d8f16a0c940330773aea # Parent a75c9665ef06d45c94af1231c3aef21ce7d5ba8c 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 diff -r a75c9665ef06 -r 8c1759a2bdf4 tests/test-check-shbang.t --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-check-shbang.t Wed Apr 06 19:09:12 2016 +0000 @@ -0,0 +1,13 @@ +#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]