summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2012-12-03 14:53:37 +0000
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2012-12-03 14:53:37 +0000
commit286a89a00d226d8c953c1479250c25c275efd957 (patch)
tree91d857ff93895888614c84ccb525d7e650465bed /contrib
parent2f2771f243c67f84a6e35f0519ba02e6c51cf11d (diff)
downloadppe42-gcc-286a89a00d226d8c953c1479250c25c275efd957.tar.gz
ppe42-gcc-286a89a00d226d8c953c1479250c25c275efd957.zip
Fix stale use of old 'options' argument.
An earlier patch had made the command line options a global variable _OPTIONS, but it had not renamed all the uses of the old options argument. * testsuite-management/validate_failures.py: Fix stale use of 'options'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194092 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog5
-rwxr-xr-xcontrib/testsuite-management/validate_failures.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index cc1c8df3313..f7fee0e871b 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,8 @@
+2012-12-03 Diego Novillo <dnovillo@google.com>
+
+ * testsuite-management/validate_failures.py: Fix stale
+ use of 'options'.
+
2012-11-30 Doug Evans <dje@google.com>
* testsuite-management/validate_failures.py: Add support for @include,
diff --git a/contrib/testsuite-management/validate_failures.py b/contrib/testsuite-management/validate_failures.py
index 483f466b040..d02b575a3d6 100755
--- a/contrib/testsuite-management/validate_failures.py
+++ b/contrib/testsuite-management/validate_failures.py
@@ -241,7 +241,7 @@ def GetNegativeResult(line):
def ParseManifestWorker(result_set, manifest_path):
"""Read manifest_path, adding the contents to result_set."""
- if options.verbosity >= 1:
+ if _OPTIONS.verbosity >= 1:
print 'Parsing manifest file %s.' % manifest_path
manifest_file = open(manifest_path)
for line in manifest_file:
OpenPOWER on IntegriCloud