First stab at autogen.sh

This commit is contained in:
Pim van Pelt
2019-01-03 20:47:34 +01:00
parent 1db8c1a0bf
commit 34cc6d5de2
6 changed files with 108 additions and 2 deletions

1
src/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
tests_autogen.c

View File

@ -1,4 +1,5 @@
#include "mgos.h"
#include "tests_autogen.h"
#include <fcntl.h>
#include <math.h>
#include <sys/ioctl.h>
@ -59,6 +60,10 @@ int main(int argc, char **argv, char **environ) {
i2c_scanner(i2c, true);
tests_create();
tests_run();
tests_destroy();
return 0;
(void)argc;
(void)argv;