diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-01 18:21:25 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-01 18:21:25 +0000 |
commit | 394e9d5dd4fefbd49ddc3ed8a0eafe21d7581e27 (patch) | |
tree | bf82ca6321b459ef7c272d761c9fab3cc447c554 | |
parent | f2f170ddd8d54aa95c75879e4e329feaf19ef119 (diff) | |
download | FreeBSD-src-394e9d5dd4fefbd49ddc3ed8a0eafe21d7581e27.zip FreeBSD-src-394e9d5dd4fefbd49ddc3ed8a0eafe21d7581e27.tar.gz |
MFC r285118:
r285118 (by jmmv):
Add missing shebang
Plain test programs are not preprocessed by the build system (as opposed to
ATF test cases, which automatically gain a shebang pointing at atf-sh), so
we must take care of providing the shebang ourselves.
I'm not sure why this was not causing problems with Kyua 0.11, but the
upcoming 0.12 release chokes on this particular issue.
-rw-r--r-- | share/examples/tests/tests/plain/cp_test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/examples/tests/tests/plain/cp_test.sh b/share/examples/tests/tests/plain/cp_test.sh index ea64705..c45d684 100644 --- a/share/examples/tests/tests/plain/cp_test.sh +++ b/share/examples/tests/tests/plain/cp_test.sh @@ -1,3 +1,4 @@ +#! /bin/sh # $FreeBSD$ # # Copyright 2013 Google Inc. |