mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 10:03:47 +08:00
contrib: sync dg-extract-results.py with GCC
This syncs dg-extract-results.py with GCC. It contains only one commit: r14-7145-g8f67953d0198fe. contrib/ChangeLog: * dg-extract-results.py: Sync with GCC. Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
parent
7650ea3890
commit
a02a739070
@ -1,3 +1,7 @@
|
|||||||
|
2024-03-11 Sam James <sam@gentoo.org>
|
||||||
|
|
||||||
|
* dg-extract-results.py: Sync with GCC.
|
||||||
|
|
||||||
2020-09-25 Simon Marchi <simon.marchi@polymtl.ca>
|
2020-09-25 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* mklog.py: New file, imported from gcc.
|
* mklog.py: New file, imported from gcc.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Free Software Foundation, Inc.
|
# Copyright (C) 2014-2024 Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# This script is free software; you can redistribute it and/or modify
|
# This script is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -113,7 +113,8 @@ class Prog:
|
|||||||
# Whether to create .sum rather than .log output.
|
# Whether to create .sum rather than .log output.
|
||||||
self.do_sum = True
|
self.do_sum = True
|
||||||
# Regexps used while parsing.
|
# Regexps used while parsing.
|
||||||
self.test_run_re = re.compile (r'^Test Run By (\S+) on (.*)$')
|
self.test_run_re = re.compile (r'^Test run by (\S+) on (.*)$',
|
||||||
|
re.IGNORECASE)
|
||||||
self.tool_re = re.compile (r'^\t\t=== (.*) tests ===$')
|
self.tool_re = re.compile (r'^\t\t=== (.*) tests ===$')
|
||||||
self.result_re = re.compile (r'^(PASS|XPASS|FAIL|XFAIL|UNRESOLVED'
|
self.result_re = re.compile (r'^(PASS|XPASS|FAIL|XFAIL|UNRESOLVED'
|
||||||
r'|WARNING|ERROR|UNSUPPORTED|UNTESTED'
|
r'|WARNING|ERROR|UNSUPPORTED|UNTESTED'
|
||||||
|
Loading…
Reference in New Issue
Block a user