diff options
author | Jannis Pohlmann <jannis.pohlmann@codethink.co.uk> | 2012-02-17 12:17:06 +0000 |
---|---|---|
committer | Jannis Pohlmann <jannis.pohlmann@codethink.co.uk> | 2012-02-17 12:17:06 +0000 |
commit | 0cfffb9368ad68d28d24f856c2a7221c4bcd8ccc (patch) | |
tree | 7235768017dd84be8aa43cb3d8c833798bc10556 | |
parent | a9427b6df70b3a85a0a687860a0efd7989bc7457 (diff) | |
download | lorry-0cfffb9368ad68d28d24f856c2a7221c4bcd8ccc.tar.gz |
Add empty setup_once script to satisfy cmdtest.
-rwxr-xr-x | tests/setup_once | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/setup_once b/tests/setup_once new file mode 100755 index 0000000..0f88ca6 --- /dev/null +++ b/tests/setup_once @@ -0,0 +1,21 @@ +#!/bin/sh +# +# Copyright (C) 2011 Codethink Limited +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + +set -e + +# Do nothing for now. |