summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorro <ro@138bc75d-0d04-0410-961f-82ee72b054a4>2012-04-16 14:49:00 +0000
committerro <ro@138bc75d-0d04-0410-961f-82ee72b054a4>2012-04-16 14:49:00 +0000
commitb20d3dc6a41a71eb40eb49cc0c8bfab2cceb8ea5 (patch)
treeedee2f32944cb3d7dcb8ea457505256955ab34d2 /contrib
parent0704fb2e43031c1e7f22b09268fdfe63460de5a4 (diff)
downloadgcc-b20d3dc6a41a71eb40eb49cc0c8bfab2cceb8ea5.tar.gz
Use target_alias in validate_failures.py
* testsuite-management/validate_failures.py (GetBuildData): Use target_alias. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186497 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog5
-rwxr-xr-xcontrib/testsuite-management/validate_failures.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index fb59f6692e0..97b86454d6c 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,8 @@
+2012-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ * testsuite-management/validate_failures.py (GetBuildData): Use
+ target_alias.
+
2012-04-06 Doug Evans <dje@google.com>
* dg-extract-results.sh: Handle KFAILs.
diff --git a/contrib/testsuite-management/validate_failures.py b/contrib/testsuite-management/validate_failures.py
index 7bc50896a66..c0436e5811d 100755
--- a/contrib/testsuite-management/validate_failures.py
+++ b/contrib/testsuite-management/validate_failures.py
@@ -5,7 +5,7 @@
# Contributed by Diego Novillo <dnovillo@google.com>
#
-# Copyright (C) 2011 Free Software Foundation, Inc.
+# Copyright (C) 2011, 2012 Free Software Foundation, Inc.
#
# This file is part of GCC.
#
@@ -241,7 +241,7 @@ def CompareResults(manifest, actual):
def GetBuildData(options):
- target = GetMakefileValue('%s/Makefile' % options.build_dir, 'target=')
+ target = GetMakefileValue('%s/Makefile' % options.build_dir, 'target_alias=')
srcdir = GetMakefileValue('%s/Makefile' % options.build_dir, 'srcdir =')
if not ValidBuildDirectory(options.build_dir, target):
Error('%s is not a valid GCC top level build directory.' %