From ad4b6e12f137817217058f60c36ad51a4d29e417 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Fri, 23 Feb 2018 21:55:33 +0100 Subject: Don't reset errno when skipping tests. The error number should not be reset until a new instance of "operation ..." is reached. The ignore-feature initially worked by accident since pj_errno was not being reset when calling proj_errno_reset. This was fixed in #808, which subsequently caused ignored tests to fail. --- src/gie.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/gie.c b/src/gie.c index d9323bac..eb5d5957 100644 --- a/src/gie.c +++ b/src/gie.c @@ -332,7 +332,6 @@ static int another_failure (void) { static int another_skip (void) { T.op_skip++; T.total_skip++; - proj_errno_reset (T.P); return 0; } -- cgit v1.2.3