diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-03 14:53:37 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-03 14:53:37 +0000 |
commit | 286a89a00d226d8c953c1479250c25c275efd957 (patch) | |
tree | 91d857ff93895888614c84ccb525d7e650465bed /contrib | |
parent | 2f2771f243c67f84a6e35f0519ba02e6c51cf11d (diff) | |
download | gcc-286a89a00d226d8c953c1479250c25c275efd957.tar.gz |
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/ChangeLog | 5 | ||||
-rwxr-xr-x | contrib/testsuite-management/validate_failures.py | 2 |
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: |