diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-15 10:50:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 10:50:15 -0700 |
commit | ef297d466e81b1fbdb5472f7f36e5903f66c959f (patch) | |
tree | ab8bd98924ae2bc9dce6205d9631be2eaae762cb | |
parent | 9b78bf9293bd7920b60aa0bf41fa40f9200f54ff (diff) | |
parent | 55eea9127a845e2a7f3db04f0c7a10ae5b3ef0f6 (diff) | |
download | podman-ef297d466e81b1fbdb5472f7f36e5903f66c959f.tar.gz podman-ef297d466e81b1fbdb5472f7f36e5903f66c959f.tar.bz2 podman-ef297d466e81b1fbdb5472f7f36e5903f66c959f.zip |
Merge pull request #5767 from edsantiago/logformat_add_anchors_and_apiv2
logformat: handle apiv2 results, add anchor links
-rwxr-xr-x | contrib/cirrus/logformatter | 8 | ||||
-rwxr-xr-x | test/apiv2/test-apiv2 | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/contrib/cirrus/logformatter b/contrib/cirrus/logformatter index 6a86f6a49..738d2e19d 100755 --- a/contrib/cirrus/logformatter +++ b/contrib/cirrus/logformatter @@ -220,8 +220,8 @@ END_HTML $cirrus_task = $1; } - # BATS handling - if ($line =~ /^1\.\.\d+$/) { + # BATS handling (used also for apiv2 tests, which emit TAP output) + if ($line =~ /^1\.\.\d+$/ || $line =~ m!/test-apiv2!) { $looks_like_bats = 1; } if ($looks_like_bats) { @@ -234,6 +234,10 @@ END_HTML elsif ($line =~ /^#\s/) { $css = 'log' } if ($css) { + # Make it linkable, e.g. foo.html#t--00001 + if ($line =~ /^(not\s+)?ok\s+(\d+)/) { + $line = sprintf("<a name='t--%05d'>%s</a>", $2, $line); + } $line = "<span class='bats-$css'>$line</span>"; } diff --git a/test/apiv2/test-apiv2 b/test/apiv2/test-apiv2 index b101be012..1af76b4be 100755 --- a/test/apiv2/test-apiv2 +++ b/test/apiv2/test-apiv2 @@ -355,7 +355,7 @@ done if [ -n "$service_pid" ]; then kill $service_pid - wait -f $service_pid + wait $service_pid fi test_count=$(<$testcounter_file) |