From f28c6bf0b96c82b523104f02c750b22b0d0b6981 Mon Sep 17 00:00:00 2001 From: ngie Date: Tue, 1 Dec 2015 18:21:25 +0000 Subject: [PATCH] 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. git-svn-id: svn://svn.freebsd.org/base/stable/10@291603 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- share/examples/tests/tests/plain/cp_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/share/examples/tests/tests/plain/cp_test.sh b/share/examples/tests/tests/plain/cp_test.sh index ea6470518..c45d68490 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. -- 2.45.0