Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-06-24 17:38:00 +0000
committerDavid Williams2016-06-24 17:38:00 +0000
commita76edf05e83a8a136dfe93161a4dfdfd441855bf (patch)
treec263921bbc99679575fc7b8c4d7458aef8ca5207
parent284c68775c943b8c5f8fe5304d845a3945383bc2 (diff)
downloadeclipse.platform.releng.aggregator-a76edf05e83a8a136dfe93161a4dfdfd441855bf.tar.gz
eclipse.platform.releng.aggregator-a76edf05e83a8a136dfe93161a4dfdfd441855bf.tar.xz
eclipse.platform.releng.aggregator-a76edf05e83a8a136dfe93161a4dfdfd441855bf.zip
Bug 496698 - "Abort the build if it's stuck" continues to run
-rwxr-xr-xproduction/miscToolsAndNotes/test496698/runFor10Minutes.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/miscToolsAndNotes/test496698/runFor10Minutes.sh b/production/miscToolsAndNotes/test496698/runFor10Minutes.sh
index ef644acd9..6daeb1316 100755
--- a/production/miscToolsAndNotes/test496698/runFor10Minutes.sh
+++ b/production/miscToolsAndNotes/test496698/runFor10Minutes.sh
@@ -7,7 +7,7 @@ while [[ $count -lt $max ]]
do
sleep 1m
count=$(($count + 1))
- echo "count: $count"
+ echo -e "\tcount: $count of $max" | tee /shared/eclipse/test496698/test496698out.txt
if [[ $count -ge $max ]]
then
echo -e "\n\tExiting ${0##*/} normally\n"

Back to the top