From 66a525ce5a4e95fb8576ea183e06e1eb730a135d Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 2 May 2012 16:33:40 +0100 Subject: fish: Add a regression test for the 'glob' command. --- fish/Makefile.am | 2 ++ fish/test-glob.sh | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100755 fish/test-glob.sh (limited to 'fish') diff --git a/fish/Makefile.am b/fish/Makefile.am index d809ba17..6b52820b 100644 --- a/fish/Makefile.am +++ b/fish/Makefile.am @@ -248,6 +248,7 @@ TESTS += \ test-copy.sh \ test-edit.sh \ test-find0.sh \ + test-glob.sh \ test-mount-local.sh \ test-read_file.sh \ test-remote.sh \ @@ -265,6 +266,7 @@ EXTRA_DIST += \ test-escapes.sh \ test-events.sh \ test-find0.sh \ + test-glob.sh \ test-mount-local.sh \ test-read_file.sh \ test-remote.sh \ diff --git a/fish/test-glob.sh b/fish/test-glob.sh new file mode 100755 index 00000000..0d54dbec --- /dev/null +++ b/fish/test-glob.sh @@ -0,0 +1,105 @@ +#!/bin/bash - +# libguestfs +# Copyright (C) 2012 Red Hat Inc. +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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. + +# Test guestfish glob command. + +set -e + +rm -f test.img test.out + +./guestfish > test.out <