RIOT OS build and test scripts, build instructions

This commit is contained in:
kaleb-himes
2016-12-02 13:53:05 -07:00
parent 4317141260
commit 684f9bad22
10 changed files with 276 additions and 1 deletions

View File

@@ -210,7 +210,11 @@ int testsuite_test(int argc, char** argv)
#endif /* HAVE_WNR */
printf("\nAll tests passed!\n");
#ifdef WOLFSSL_RIOT_OS
exit(0);
#else
return EXIT_SUCCESS;
#endif
}
void simple_test(func_args* args)
@@ -411,7 +415,11 @@ int main(int argc, char** argv)
if (server_args.return_code != 0) return server_args.return_code;
printf("\nAll tests passed!\n");
#ifdef WOLFSSL_RIOT_OS
exit(0);
#else
return EXIT_SUCCESS;
#endif
}