]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* testsuite-management/validate_failures.py: Use <target_alias> instead
authordevans <devans@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Nov 2012 19:25:24 +0000 (19:25 +0000)
committerdevans <devans@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Nov 2012 19:25:24 +0000 (19:25 +0000)
of <target>.  Minor whitespace changes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193904 138bc75d-0d04-0410-961f-82ee72b054a4

contrib/ChangeLog
contrib/testsuite-management/validate_failures.py

index 8bf6add3f8fce34498f557ea31ecd6957da75574..4a7c7361de1248ffb513f77adce8a945339ba4c3 100644 (file)
@@ -1,5 +1,8 @@
 2012-11-28  Doug Evans  <dje@google.com>
 
+       * testsuite-management/validate_failures.py: Use <target_alias> instead
+       of <target>.  Minor whitespace changes.
+
        * testsuite-management/validate_failures.py: Record ordinal with
        TestResult.
 
index d78a54f860b58465d8dce8ff038f85887b2b1de5..7bbccf3eaf42f99495a05158d5bb630d1ff6ef0b 100755 (executable)
@@ -226,8 +226,7 @@ def GetManifest(manifest_name):
   Each entry in the manifest file should have the format understood
   by the TestResult constructor.
 
-  If no manifest file exists for this target, it returns an empty
-  set.
+  If no manifest file exists for this target, it returns an empty set.
   """
   if os.path.exists(manifest_name):
     return ParseSummary(manifest_name)
@@ -418,7 +417,7 @@ def Main(argv):
   parser.add_option('--manifest', action='store', type='string',
                     dest='manifest', default=None,
                     help='Name of the manifest file to use (default = '
-                    'taken from contrib/testsuite-managment/<target>.xfail)')
+                    'taken from contrib/testsuite-managment/<target_alias>.xfail)')
   parser.add_option('--produce_manifest', action='store_true',
                     dest='produce_manifest', default=False,
                     help='Produce the manifest for the current '
@@ -445,6 +444,7 @@ def Main(argv):
   else:
     return 1
 
+
 if __name__ == '__main__':
   retval = Main(sys.argv)
   sys.exit(retval)