mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-23 10:08:06 +08:00
16 lines
229 B
C
16 lines
229 B
C
/*
|
|
* testsuites.c
|
|
*
|
|
* Created on: Jun 19, 2013
|
|
* Author: petera
|
|
*/
|
|
|
|
#include "testrunner.h"
|
|
|
|
void add_suites() {
|
|
//ADD_SUITE(dev_tests);
|
|
ADD_SUITE(check_tests);
|
|
ADD_SUITE(hydrogen_tests)
|
|
ADD_SUITE(bug_tests)
|
|
}
|