Skip to content

Commit

Permalink
Oops, fix commented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
multiplemonomials committed Oct 3, 2023
1 parent 4342157 commit 075c42c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/tests/TESTS/mbed_drivers/watchdog_reset/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,18 +328,18 @@ utest::v1::status_t testsuite_setup(const size_t number_of_cases)
}

Case cases[] = {
//Case("Watchdog reset", case_setup, test_simple_reset),
Case("Watchdog reset", case_setup, test_simple_reset),
#if DEVICE_SLEEP
//Case("Watchdog reset in sleep mode", case_setup, test_sleep_reset),
Case("Watchdog reset in sleep mode", case_setup, test_sleep_reset),
#if DEVICE_LPTICKER
Case("Watchdog reset in deepsleep mode", case_setup, test_deepsleep_reset),
#endif
#endif
//Case("Watchdog started again", case_setup, test_restart_reset),
//Case("Kicking the Watchdog prevents reset", case_setup, test_kick_reset),
Case("Watchdog started again", case_setup, test_restart_reset),
Case("Kicking the Watchdog prevents reset", case_setup, test_kick_reset),
};

Specification specification( testsuite_setup, cases);
Specification specification(testsuite_setup, cases);

int main()
{
Expand Down

0 comments on commit 075c42c

Please sign in to comment.