summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-03-17 09:08:17 +0000
committersma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-03-17 09:08:17 +0000
commit25c65769b52d3b30f4184c532426fc5589efa1f0 (patch)
tree00b1577e33482cfa2536ee7ba5e7062500aa773b
parent3cdeb403628cc23b1d9b2aa4a85f6e7b6449f1d4 (diff)
downloadATCD-25c65769b52d3b30f4184c532426fc5589efa1f0.tar.gz
ChangeLogTag: Tue Mar 17 09:10:00 UTC 2009 Simon Massey <sma at prismtech dot com>
-rw-r--r--ACE/ChangeLog6
-rwxr-xr-xACE/bin/diff-builds-and-group-fixed-tests-only.sh2
2 files changed, 8 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index c6b61e39ecd..82c396d885c 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,9 @@
+Tue Mar 17 09:10:00 UTC 2009 Simon Massey <sma at prismtech dot com>
+
+ * bin/diff-builds-and-group-fixed-tests-only.sh:
+ Correct Fri Mar 13 08:16:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
+ so that CIAO_ROOT and TAO_ROOT are actually set.
+
Mon Mar 16 20:04:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/generate_compile_stats.sh:
diff --git a/ACE/bin/diff-builds-and-group-fixed-tests-only.sh b/ACE/bin/diff-builds-and-group-fixed-tests-only.sh
index 78bdd929c6c..9f88c97335d 100755
--- a/ACE/bin/diff-builds-and-group-fixed-tests-only.sh
+++ b/ACE/bin/diff-builds-and-group-fixed-tests-only.sh
@@ -1,6 +1,8 @@
if test -z $1; then olddate=2009_02_09; else olddate=$1; fi
if test -z $2; then prefix=`date -u +%Y%m%d%a`; else prefix=$2; fi
if test -z $ACE_ROOT; then ACE_ROOT=..; fi
+if test -z $TAO_ROOT; then TAO_ROOT=${ACE_ROOT}/TAO; fi
+if test -z $CIAO_ROOT; then CIAO_ROOT=${TAO_ROOT}/CIAO; fi
#
grep -h \!FIXED_BUGS_ONLY ${ACE_ROOT}/tests/*.lst ${ACE_ROOT}/bin/*.lst ${TAO_ROOT}/bin/*.lst ${CIAO_ROOT}/bin/*.lst | sed -e "s/^\([^\:]*\).*/\1/" | sed -e "s/\(\/run_test.pl\)\?\s*$//" > ${prefix}-Ignore.txt
#