From 0d34f2deddeff115a8a9d14dd8ebd705edaa273b Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Mon, 19 Nov 2012 23:24:24 -0800 Subject: [PATCH] Added ulimit to test script because lol debugging --- test/runQuack | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/runQuack b/test/runQuack index d1f3756..4eac352 100755 --- a/test/runQuack +++ b/test/runQuack @@ -1,6 +1,8 @@ #!/bin/bash # Todo: Find a way to make this not suck. +ulimit -t 60 # Sometimes GHC ends in a spin loop, and this is easier than debugging + [[ -e test/quackCheck.hs ]] || { echo "Are you running me from the wrong directory?"; exit 1; } [[ $1 == -v ]] && pattern="" || pattern="FAIL"