run_avr: Add -v argument to raise verbosity level
[simavr] / tests / test_atmega48_watchdog_test.c
1 #include "tests.h"
2
3 int main(int argc, char **argv) {
4         tests_init(argc, argv);
5
6         static const char *expected =
7                 "Watchdog is active\r\n"
8                 "Waiting for Watchdog to kick\r\n"
9                 "Watchdog kicked us!\r\n";
10
11         tests_assert_uart_receive("atmega48_watchdog_test.axf", 1000000,
12                                   expected, '0');
13         tests_success();
14         return 0;
15 }