Remove remnants of test information.
diff --git a/testing/cper-convert.c b/testing/cper-convert.c
index 8d9535d..ba1908d 100644
--- a/testing/cper-convert.c
+++ b/testing/cper-convert.c
@@ -202,65 +202,4 @@
     printf("\tpremature exit/unexpected behaviour in CPER output.\n");
     printf("\n:: --help\n");
     printf("\tDisplays help information to the console.\n");
-}
-
-// void test_ir_to_cper(int argc, char* argv[])
-// {
-//     if (argc < 4)
-//     {
-//         printf("Insufficient number of arguments.\n");
-//         return;
-//     }
-
-//     //Read JSON IR from file.
-//     json_object* ir = json_object_from_file(argv[2]);
-//     if (ir == NULL)
-//     {
-//         printf("Could not read IR JSON, import returned null.");
-//         return;
-//     }
-
-//     //Open a read for the output file.
-//     FILE* cper_file = fopen(argv[3], "w");
-//     if (cper_file == NULL) {
-//         printf("Could not open output file, file handle returned null.");
-//         return;
-//     }
-
-//     //Run the converter.
-//     ir_to_cper(ir, cper_file);
-//     fclose(cper_file);
-//     printf("Conversion finished!\n");
-// }
-
-// void test_cper_to_ir(int argc, char* argv[])
-// {
-//     //Get a handle for the log file.
-//     FILE* cper_file = fopen(argv[2], "r");
-//     if (cper_file == NULL) {
-//         printf("Could not open CPER record, file handle returned null.");
-//         return;
-//     }
-
-//     json_object* ir = cper_to_ir(cper_file);
-//     fclose(cper_file);
-
-//     const char* json_output = json_object_to_json_string(ir);
-//     printf("\n%s\n", json_output);
-
-//     //Test JSON validator.
-//     if (argc >= 4)
-//     {
-//         printf("Validating output with specification %s...\n", argv[3]);
-//         validate_schema_debug_enable();
-//         char* error_message = malloc(JSON_ERROR_MSG_MAX_LEN);
-//         if (!validate_schema_from_file(argv[3], ir, error_message))
-//         {
-//             printf("Validation failed: %s\n", error_message);
-//         }
-//         else
-//         {
-//             printf("Validation passed!\n");
-//         }
-//     }
-// }
\ No newline at end of file
+}
\ No newline at end of file