view contrib/reghunt/examples/reg-watch.awk @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents a06113de4d67
children
line wrap: on
line source

/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
			}