Repository: lucy-clownfish Updated Branches: refs/heads/master 4b0abced7 -> 43de47bc4
Fix skip count in TestVector.c Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/6c5b0345 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/6c5b0345 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/6c5b0345 Branch: refs/heads/master Commit: 6c5b03458323db81808857cb5b65082c7e04fd25 Parents: 4b0abce Author: Nick Wellnhofer <[email protected]> Authored: Mon Feb 29 22:10:49 2016 +0100 Committer: Nick Wellnhofer <[email protected]> Committed: Mon Feb 29 22:10:49 2016 +0100 ---------------------------------------------------------------------- runtime/core/Clownfish/Test/TestVector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/6c5b0345/runtime/core/Clownfish/Test/TestVector.c ---------------------------------------------------------------------- diff --git a/runtime/core/Clownfish/Test/TestVector.c b/runtime/core/Clownfish/Test/TestVector.c index 7183504..a2a0a1e 100644 --- a/runtime/core/Clownfish/Test/TestVector.c +++ b/runtime/core/Clownfish/Test/TestVector.c @@ -458,7 +458,7 @@ S_test_exception(TestBatchRunner *runner, Err_Attempt_t func, static void test_exceptions(TestBatchRunner *runner) { if (getenv("LUCY_VALGRIND")) { - SKIP(runner, 4, "memory leak"); + SKIP(runner, 5, "memory leak"); return; } S_test_exception(runner, S_overflow_Push,
