CURRENT_TEST_FUNCTION
Example
PostFunction(INT stopMode, INT result)() // Open custom CSV log FILE log; FOPEN("customlog.csv", "a")(log); IF FERROR() THEN PRINT("Unable to open customlog.csv"); EXIT(RESULT_FAIL); END; // Write a log entry FWRITE(log, CURRENT_TEST_GROUP + "," + CURRENT_TEST_FUNCTION + "," + FORMAT(result, "%i") + "\n"); IF FERROR() THEN PRINT("An error occurred when writing to customlog.csv"); EXIT(RESULT_FAIL); END; FCLOSE(log); END;
XJTAG v4.2.5
