Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jul 2015 02:24:47 +0000 (UTC)
From:      Julio Merino <jmmv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r285118 - head/share/examples/tests/tests/plain
Message-ID:  <201507040224.t642OlNX007178@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmmv
Date: Sat Jul  4 02:24:47 2015
New Revision: 285118
URL: https://svnweb.freebsd.org/changeset/base/285118

Log:
  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.
  
  MFC after:	1 week

Modified:
  head/share/examples/tests/tests/plain/cp_test.sh

Modified: head/share/examples/tests/tests/plain/cp_test.sh
==============================================================================
--- head/share/examples/tests/tests/plain/cp_test.sh	Sat Jul  4 02:22:26 2015	(r285117)
+++ head/share/examples/tests/tests/plain/cp_test.sh	Sat Jul  4 02:24:47 2015	(r285118)
@@ -1,3 +1,4 @@
+#! /bin/sh
 # $FreeBSD$
 #
 # Copyright 2013 Google Inc.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507040224.t642OlNX007178>