From 382165bcfe208367614a10dd17758379f7446899 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 13 Mar 2016 14:18:47 +0000 Subject: [PATCH] We should return failure if we failed. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3163 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- tools/run-tests | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/run-tests b/tools/run-tests index 482c7181..1611d708 100755 --- a/tools/run-tests +++ b/tools/run-tests @@ -66,3 +66,4 @@ for test in selectedTests: shutil.rmtree(tmp) print passCount, 'tests passed. ', failCount, 'tests failed.' +exit(failCount)