tests: continue to next tests rather than quit when failing to initialize a test
diff --git a/tests/test_mips.c b/tests/test_mips.c
index 02f8d88..e4eb0c3 100644
--- a/tests/test_mips.c
+++ b/tests/test_mips.c
@@ -101,7 +101,7 @@
 		cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
 		if (err) {
 			printf("Failed on cs_open() with error returned: %u\n", err);
-			return;
+			continue;
 		}
 
 		cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON);