3
0
post-build-checks/strim-whitespace.diff
Stephan Kulow d62833e747 - strim white space in check_gcc_output - this reduces the time
to check an openSUSE-images log file (38M mostly whitespace due
  to zypper output) from several hours to some seconds

OBS-URL: https://build.opensuse.org/package/show/Base:System/post-build-checks?expand=0&rev=62
2012-05-28 08:19:57 +00:00

13 lines
495 B
Diff

Index: post-build-checks-1.0/checks-data/check_gcc_output
===================================================================
--- post-build-checks-1.0.orig/checks-data/check_gcc_output 2011-10-20 11:57:54.000000000 +0200
+++ post-build-checks-1.0/checks-data/check_gcc_output 2012-05-28 10:17:58.937350253 +0200
@@ -197,6 +197,7 @@ my $in_build_stage = 0;
while (<>) {
chomp;
+ s, +, ,g;
next if (m,/usr/include/c\+\+/,);
$in_build_stage = 1 if (/^Executing\(\%build/);