URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [contrib/] [reghunt/] [examples/] [reg-watch.awk] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/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 }
Go to most recent revision | Compare with Previous | Blame | View Log