[ARVADOS] updated: 1.1.4-498-g4fdb030e1

Git user git at public.curoverse.com
Fri Jun 22 13:50:01 EDT 2018


Summary of changes:
 build/run-tests.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

       via  4fdb030e1ad940215b75b4b8a8f7aca5635211e3 (commit)
      from  78a9021dc8baa5603feb512c45c1fbca5f3accfc (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 4fdb030e1ad940215b75b4b8a8f7aca5635211e3
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date:   Fri Jun 22 13:47:37 2018 -0400

    Ensure $WORKSPACE/tmp/ exists. Fix unchecked error.
    
    No issue #
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>

diff --git a/build/run-tests.sh b/build/run-tests.sh
index 4ec5c08d5..636c0306c 100755
--- a/build/run-tests.sh
+++ b/build/run-tests.sh
@@ -619,7 +619,8 @@ fi
 # Jenkins config requires that glob tmp/*.log match something. Ensure
 # that happens even if we don't end up running services that set up
 # logging.
-touch "${WORKSPACE}/tmp/controller.log"
+mkdir -p "${WORKSPACE}/tmp/" || fatal "could not mkdir ${WORKSPACE}/tmp"
+touch "${WORKSPACE}/tmp/controller.log" || fatal "could not touch ${WORKSPACE}/tmp/controller.log"
 
 retry() {
     remain="${repeat}"

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list