diff --git a/Makefile b/Makefile index a80ae65ca16680e6d3f2eb16b537d50c3ed0da9b..b5f47ea76582ff3626ac0e11c9a6b24c8a294e66 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,9 @@ ARFLAGS = rs # Transform parallel LOG output into something more readable. perl_command = perl -n \ - -e '@a=split("\t",$$_,-1); $$t=$$a[8]; $$t =~ s,^\./,,;' \ + -e '@a=split("\t",$$_,-1); $$t=$$a[8];' \ + -e '$$t =~ /.*if\s\[\[\s"(.*?\.[\w\/]+)/ and $$t=$$1;' \ + -e '$$t =~ s,^\./,,;' \ -e '$$t =~ s, >.*,,; chomp $$t;' \ -e '$$t =~ /.*--gtest_filter=(.*?\.[\w\/]+)/ and $$t=$$1;' \ -e 'printf "%7.3f %s %s\n", $$a[3], $$a[6] == 0 ? "PASS" : "FAIL", $$t'