ROSE/host_test/main.c

15 lines
250 B
C

#include <stdio.h>
#include "str_test.c"
int main() {
int fail = 0;
puts("\t--- Host tests for ROSE ---\n");
fail |= do_str_test();
puts(fail ? "\n\t--- ROSE FAILED TEST ---" : "\n\t--- ROSE PASSED TEST ---");
return fail;
}