[jbosstools-commits] JBoss Tools SVN: r22733 - trunk.
jbosstools-commits at lists.jboss.org
jbosstools-commits at lists.jboss.org
Thu Jun 10 15:06:15 EDT 2010
Author: nickboldt
Date: 2010-06-10 15:06:14 -0400 (Thu, 10 Jun 2010)
New Revision: 22733
Modified:
trunk/runstack.sh
Log:
tweak example and filter
Modified: trunk/runstack.sh
===================================================================
--- trunk/runstack.sh 2010-06-10 19:05:39 UTC (rev 22732)
+++ trunk/runstack.sh 2010-06-10 19:06:14 UTC (rev 22733)
@@ -7,7 +7,7 @@
if [[ $# -lt 1 ]]; then
echo "Usage: $0 component1 component2 ..."
echo "Eg. $0 tests common jmx archives as"
- echo "Eg. $0 jst jsf vpe struts seam"
+ echo "Eg. $0 jst jsf vpe struts seam -Dmaven.test.skip"
exit 1
fi
@@ -32,7 +32,8 @@
# collect compilation results and failures
for d in $components; do
cd $workingdir; echo "==== $d ===="
- egrep -v "org\.|com\." $d/buildlog.latest.txt | egrep "SUCCESS|FAIL"
+ egrep -v "org\.|com\." $d/buildlog.latest.txt | egrep "SUCCESS"
+ egrep "FAILURE|SKIPPED" $d/buildlog.latest.txt
egrep -A1 "Cannot complete the request|depends on|satisfy dependency|Missing requirement|requires '.+'" $d/buildlog.latest.txt
echo ""
done
More information about the jbosstools-commits
mailing list