From 08130e0ba9bfc37abec740f747062cce362b7e4f Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Wed, 3 Sep 2014 10:37:32 -0700 Subject: [PATCH] increase the timeout for RWC tests --- Jakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jakefile b/Jakefile index b803f23eae8..a4341f8ed00 100644 --- a/Jakefile +++ b/Jakefile @@ -360,10 +360,15 @@ task("runtests", ["tests", builtLocalDirectory], function() { if(fs.existsSync(testConfigFile)) { fs.unlinkSync(testConfigFile); } + if(tests) { writeTestConfigFile(tests, testConfigFile); } + if (tests && tests.toLocaleLowerCase() === "rwc") { + testTimeout = 50000; + } + colors = process.env.colors || process.env.color colors = colors ? ' --no-colors ' : '' tests = tests ? ' -g ' + tests : '';