mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-08 09:07:53 +00:00
39 lines
770 B
Awk
Executable File
39 lines
770 B
Awk
Executable File
/result for low patch/ {
|
|
sub(".*low patch ","")
|
|
sub(" is as expected","")
|
|
printf ("<-- %4s\n", $0);
|
|
next
|
|
}
|
|
/result for high patch/ {
|
|
sub(".*high patch ","")
|
|
sub(" is as expected","")
|
|
printf (" %4s -->\n", $0);
|
|
next
|
|
}
|
|
/patches later/ {
|
|
sub(".*later than ","")
|
|
printf ("<-- %4s\n", $0);
|
|
next
|
|
}
|
|
/patches earlier/ {
|
|
sub(".*earlier than ","")
|
|
printf (" %4s -->\n", $0);
|
|
next
|
|
}
|
|
/build failed for/ {
|
|
sub(".*build failed for ","")
|
|
printf (" [%4s]\n", $0);
|
|
next
|
|
}
|
|
/HIGH_PATCH/ {
|
|
printf ("* stopped early *\n")
|
|
next
|
|
}
|
|
/changes with/ {
|
|
sub(".*changes with id ","")
|
|
printf ("+----------+\n")
|
|
printf ("| %4s |\n", $0)
|
|
printf ("+----------+\n")
|
|
next
|
|
}
|