summaryrefslogtreecommitdiff
path: root/tests/install/strip-program.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/install/strip-program.sh')
-rwxr-xr-xtests/install/strip-program.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/install/strip-program.sh b/tests/install/strip-program.sh
index 8950d50c..874329ae 100755
--- a/tests/install/strip-program.sh
+++ b/tests/install/strip-program.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# Ensure "install -s --strip-program=PROGRAM" uses the program to strip
-# Copyright (C) 2008-2013 Free Software Foundation, Inc.
+# Copyright (C) 2008-2014 Free Software Foundation, 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
@@ -33,4 +33,8 @@ echo aBc > exp || fail=1
ginstall src dest -s --strip-program=./b || fail=1
compare exp dest || fail=1
+# Check that install cleans up properly if strip fails.
+ginstall src dest2 -s --strip-program=./FOO && fail=1
+test -e dest2 && fail=1
+
Exit $fail