summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Goetze (CG) <cg@lindenlab.com>2010-09-15 11:36:11 -0700
committerChristian Goetze (CG) <cg@lindenlab.com>2010-09-15 11:36:11 -0700
commitcbed6ecd2be9849aae900ef17070d7bd2aa9542c (patch)
tree36ede7e943db1519fff98feeb3dfbc71ac888f9f
parentc875b929deb0d5b0a6b5ac283fb0c02754737add (diff)
Place test service messages into their own block.
-rwxr-xr-xbuild.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index b2b0433d05..39bd7aa53f 100755
--- a/build.sh
+++ b/build.sh
@@ -222,7 +222,10 @@ do
fi
else
begin_section "Build$variant"
- build "$variant" "$build_dir" 2>&1 | tee -a "$build_log" | grep --line-buffered "^##teamcity"
+ build "$variant" "$build_dir" > "$build_log" 2>&1
+ begin_section Tests
+ grep --line-buffered "^##teamcity" "$build_log"
+ end_section Tests
if `cat "$build_dir/build_ok"`
then
echo so far so good.
@@ -257,7 +260,9 @@ then
else
record_failure "Parallel build of \"$variant\" failed."
fi
+ begin_section Tests
tee -a $build_log < "$build_dir/build.log" | grep --line-buffered "^##teamcity"
+ end_section Tests
end_section "Build$variant"
done
end_section WaitParallel