From eaaae2c0f77fe371b1da8c2c248888103d488961 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 16 May 2024 12:13:35 -0400 Subject: First pass at test result creation, and optional markdown->html conversion --- include/omc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/omc.h') diff --git a/include/omc.h b/include/omc.h index 45f5671..a116296 100644 --- a/include/omc.h +++ b/include/omc.h @@ -38,6 +38,7 @@ #include "recipe.h" #include "relocation.h" #include "wheel.h" +#include "junitxml.h" #define guard_runtime_free(X) do { if (X) { runtime_free(X); X = NULL; } } while (0) #define guard_strlist_free(X) do { if ((*X)) { strlist_free(X); (*X) = NULL; } } while (0) -- cgit