ROSE/host_test/main.c

15 lines
250 B
C
Raw Normal View History

2024-08-09 12:39:48 -05:00
#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;
}