mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
8 lines
128 B
C
8 lines
128 B
C
|
#include "testrunner.h"
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(int argc, char **args) {
|
||
|
run_tests(argc, args);
|
||
|
exit(EXIT_SUCCESS);
|
||
|
}
|