[ARVADOS] updated: 309e099c9d264ca93a09ff13e4df642ee7fff00e
Git user
git at public.curoverse.com
Sat Jan 7 03:30:46 EST 2017
Summary of changes:
build/run-tests.sh | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
via 309e099c9d264ca93a09ff13e4df642ee7fff00e (commit)
from 302d9232af7fd02a4fa57af5fd89fd0cec39fdbe (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 309e099c9d264ca93a09ff13e4df642ee7fff00e
Author: Tom Clegg <tom at curoverse.com>
Date: Sat Jan 7 03:30:35 2017 -0500
10816: Fix run-tests.sh --only-install option.
diff --git a/build/run-tests.sh b/build/run-tests.sh
index 968cd6c..4b6c813 100755
--- a/build/run-tests.sh
+++ b/build/run-tests.sh
@@ -121,7 +121,7 @@ GEMHOME=
PERLINSTALLBASE=
short=
-skip_install=
+only_install=
temp=
temp_preserve=
@@ -230,10 +230,9 @@ do
short=1
;;
--skip-install)
- skip_install=1
+ only_install=nothing
;;
--only-install)
- skip_install=1
only_install="$1"; shift
;;
--temp)
@@ -598,8 +597,7 @@ do_test_once() {
}
do_install() {
- if [[ -z "${skip_install}" && \
- (-z "${only_install}" || "${only_install}" == "${1}") ]]; then
+ if [[ -z "${only_install}" || "${only_install}" == "${1}" ]]; then
retry do_install_once ${@}
else
title "Skipping $1 install"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list