cleanup
diff --git a/tests/test_basic.c b/tests/test_basic.c
index 8227e4d..4650aad 100644
--- a/tests/test_basic.c
+++ b/tests/test_basic.c
@@ -334,25 +334,5 @@
 {
 	test();
 
-#if 0
-#define offsetof(st, m) __builtin_offsetof(st, m)
-
-	cs_insn insn;
-	printf("size: %lu\n", sizeof(insn));
-	printf("@id: %lu\n", offsetof(cs_insn, id));
-	printf("@address: %lu\n", offsetof(cs_insn, address));
-	printf("@size: %lu\n", offsetof(cs_insn, size));
-	printf("@bytes: %lu\n", offsetof(cs_insn, bytes));
-	printf("@mnemonic: %lu\n", offsetof(cs_insn, mnemonic));
-	printf("@op_str: %lu\n", offsetof(cs_insn, op_str));
-	printf("@regs_read: %lu\n", offsetof(cs_insn, regs_read));
-	printf("@regs_read_count: %lu\n", offsetof(cs_insn, regs_read_count));
-	printf("@regs_write: %lu\n", offsetof(cs_insn, regs_write));
-	printf("@regs_write_count: %lu\n", offsetof(cs_insn, regs_write_count));
-	printf("@groups: %lu\n", offsetof(cs_insn, groups));
-	printf("@groups_count: %lu\n", offsetof(cs_insn, groups_count));
-	printf("@arch: %lu\n", offsetof(cs_insn, x86));
-#endif
-
 	return 0;
 }