summaryrefslogtreecommitdiffstats
path: root/fish
diff options
context:
space:
mode:
authorHilko Bengen <bengen@hilluzination.de>2012-01-21 22:56:51 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-01-23 09:08:33 +0000
commitb6e0552ee5359da785bd1c08cadf022190e98720 (patch)
treedc27506bf79b6fb19f1d6aba1fda8087306416b3 /fish
parent7004fafc6989efbbb1ef46723e8a91f936f16249 (diff)
downloadlibguestfs-b6e0552ee5359da785bd1c08cadf022190e98720.tar.gz
libguestfs-b6e0552ee5359da785bd1c08cadf022190e98720.tar.xz
libguestfs-b6e0552ee5359da785bd1c08cadf022190e98720.zip
Do not run appliance-related checks if not building appliance
Diffstat (limited to 'fish')
-rw-r--r--fish/Makefile.am10
1 files changed, 7 insertions, 3 deletions
diff --git a/fish/Makefile.am b/fish/Makefile.am
index ffe3edec..8a6f88b2 100644
--- a/fish/Makefile.am
+++ b/fish/Makefile.am
@@ -238,15 +238,19 @@ TESTS_ENVIRONMENT = \
TESTS = \
test-add-domain.sh \
- test-copy.sh \
- test-find0.sh \
test-guestfish-a.sh \
test-guestfish-d.sh \
test-guestfish-escapes.sh \
test-guestfish-events.sh \
- test-guestfish-tilde.sh \
+ test-guestfish-tilde.sh
+
+if ENABLE_APPLIANCE
+TESTS += \
+ test-copy.sh \
+ test-find0.sh \
test-read_file.sh \
test-remote.sh \
test-reopen.sh \
test-stringlist.sh \
test-upload-to-dir.sh
+endif