[mpich] MPICH primary repository branch, master, updated. v3.2b4-226-g4f2066f
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 4f2066fcba02d54eb2d21820eebb9bc254485e5a (commit) from caf1e9d1409e61468f8d3506676674ff458c8c9b (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. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/4f2066fcba02d54eb2d21820eebb9bc254... commit 4f2066fcba02d54eb2d21820eebb9bc254485e5a Author: Yanfei Guo <[email protected]> Date: Fri Sep 18 12:34:36 2015 -0500 maint/jenkins: fix dir creation bug in test-worker.sh Due to incorrect variable expansion, the creation of fake build directories in the workspace is not done correctly, which results in failures of test jobs. Signed-off-by: Ken Raffenetti <[email protected]> diff --git a/maint/jenkins/test-worker.sh b/maint/jenkins/test-worker.sh index d8c3986..2a0e115 100755 --- a/maint/jenkins/test-worker.sh +++ b/maint/jenkins/test-worker.sh @@ -111,7 +111,9 @@ CollectResults() { -o -name "m.txt" \ -o -name "mi.txt" \ -o -name "summary.junit.xml" \) \ - -exec sh -c "mkdir -p $SRC/$(dirname {})" \; + | while read -r line; do + mkdir -p "$SRC/$(dirname $line)" + done fi find . \ ----------------------------------------------------------------------- Summary of changes: maint/jenkins/test-worker.sh | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org