From 7939dbc4ae45aec2f5948cfb7feed0c4cebf9fa2 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 12 Aug 2024 14:36:21 -0400 Subject: Add test_junitxml.c * Fix duplicate define value for JUNIT_RESULT_STATE_ERROR * Add static junit test data * Copy test data to current test directory --- include/junitxml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/junitxml.h') diff --git a/include/junitxml.h b/include/junitxml.h index 504b8e4..777ee27 100644 --- a/include/junitxml.h +++ b/include/junitxml.h @@ -6,7 +6,7 @@ #define JUNIT_RESULT_STATE_NONE 0 #define JUNIT_RESULT_STATE_FAILURE 1 #define JUNIT_RESULT_STATE_SKIPPED 2 -#define JUNIT_RESULT_STATE_ERROR 2 +#define JUNIT_RESULT_STATE_ERROR 3 /** * Represents a failed test case -- cgit