From ac698cc2830992436cd3d188fb82cac9bb23c0d8 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 17 Oct 2006 19:36:55 +0000 Subject: r19378: Add another type of test result 'error' (This used to be commit 77d13056bf437de77bfc94e21e9c945928e7f521) --- source4/torture/ui.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/torture/ui.h') diff --git a/source4/torture/ui.h b/source4/torture/ui.h index c8a8d09a24..f0628b7758 100644 --- a/source4/torture/ui.h +++ b/source4/torture/ui.h @@ -29,8 +29,9 @@ struct torture_tcase; enum torture_result { TORTURE_OK=0, - TORTURE_FAIL=1, - TORTURE_SKIP=2 + TORTURE_FAIL=1, + TORTURE_ERROR=2, + TORTURE_SKIP=3 }; /* @@ -81,6 +82,7 @@ struct torture_context int todo; int success; int failed; + int errors; bool quiet; /* Whether tests should avoid writing output to stdout */ -- cgit