psx emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
279 B

#include <stdio.h>
#include "test.h"
int main(int argc, char *argv[]) {
printf("%s:\n", argv[0]);
for (size_t i = 0; i < NUM_TEST_CASES; ++i) {
printf(" * %s: ", TEST_CASES[i].name);
TEST_CASES[i].test();
printf("OK!\n");
}
return 0;
}