public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [RFA 3/8] validate_failures.py: pass options.results for clean build case
@ 2012-11-24 22:47 Doug Evans
  2012-11-25 15:40 ` Diego Novillo
  0 siblings, 1 reply; 6+ messages in thread
From: Doug Evans @ 2012-11-24 22:47 UTC (permalink / raw)
  To: dnovillo, gcc-patches

Hi.
This third patch passes options.results to GetSumFiles when fetching the results
for the clean build.
It is useful in my use cases, but I'm not sure it's useful for upstream.
[An alternative is to add another option to specify the results file(s) for the clean
build, but I'm being conservative and not adding an option if I don't have to.]

Ok to check in?

2012-11-24  Doug Evans  <dje@google.com>

	* testsuite-management/validate_failures.py (CompareBuilds): Pass options.results
	to GetSumFiles for clean build.

--- validate_failures.py=	2012-11-19 11:47:29.997632548 -0800
+++ validate_failures.py	2012-11-24 13:26:07.727726123 -0800
@@ -373,7 +373,7 @@ def CompareBuilds(options):
   sum_files = GetSumFiles(options.results, options.build_dir)
   actual = GetResults(sum_files)
 
-  clean_sum_files = GetSumFiles(None, options.clean_build)
+  clean_sum_files = GetSumFiles(options.results, options.clean_build)
   clean = GetResults(clean_sum_files)
 
   return PerformComparison(clean, actual, options.ignore_missing_failures)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-11-28 23:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-24 22:47 [RFA 3/8] validate_failures.py: pass options.results for clean build case Doug Evans
2012-11-25 15:40 ` Diego Novillo
2012-11-28 18:55   ` Doug Evans
2012-11-28 20:35     ` Diego Novillo
2012-11-28 23:02       ` Doug Evans
2012-11-28 23:35         ` Diego Novillo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).