Skip to content

Commit

Permalink
Merge branch 'patches/xenofarm_sh' into 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zeldin committed Nov 17, 2024
2 parents 93019e5 + 4145b1f commit 152cee3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/xenofarm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ log_start response_assembly
cat "$f"
done
) > xenofarm_result/configlogs.txt
cp "$BUILDDIR/config.info" xenofarm_result/configinfo.txt || /bin/true
cp "$BUILDDIR/config.cache" xenofarm_result/configcache.txt || /bin/true;
cp "$BUILDDIR/config.info" xenofarm_result/configinfo.txt || true
cp "$BUILDDIR/config.cache" xenofarm_result/configcache.txt || true;
# Compilation
if test "`find $BUILDDIR -name '*.fail' -print`" = ""; then :; else
(
Expand All @@ -101,10 +101,10 @@ log_start response_assembly
) >xenofarm_result/compilation_failure.txt
fi
# Installation
cp "$BUILDDIR/dumpmodule.log" xenofarm_result/dumplog.txt || /bin/true
cp "$BUILDDIR/dumpmodule.log" xenofarm_result/dumplog.txt || true
# Testing
if test ! -f "xenofarm_result/exportlog.txt"; then
cp "$BUILDDIR/testsuite" xenofarm_result/testsuite.txt || /bin/true;
cp "$BUILDDIR/testsuite" xenofarm_result/testsuite.txt || true;
fi
# Core files
find . -name "core" -exec \
Expand Down

0 comments on commit 152cee3

Please sign in to comment.