Explorar o código

Fix missing stanza in 3P preproc log parser

Ian Goldberg %!s(int64=3) %!d(string=hai) anos
pai
achega
bf8ddd3dcb
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      Docker/parse_logs

+ 4 - 0
Docker/parse_logs

@@ -177,6 +177,10 @@ sub parse_3P_preproc {
     my @preproc_s = ();
     my @preproc_kib = ();
     while(<>) {
+        if (/===== P([012]) output/) {
+            $who = $1;
+            next;
+        }
         last if /===== End/;
         if (/WallClockTime: (\d+\.?\d*)/) {
             $preproc_s[$who] = $1;