From eae1bc0270c92db480a58da08b07fc56e42a871c Mon Sep 17 00:00:00 2001 From: michaeloffner Date: Thu, 26 Oct 2023 10:32:29 +0200 Subject: [PATCH] temporary disable load test, because it not work yet as expected --- tests/general/LoadTest.cfc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/general/LoadTest.cfc b/tests/general/LoadTest.cfc index 9bad6fd..7482d63 100644 --- a/tests/general/LoadTest.cfc +++ b/tests/general/LoadTest.cfc @@ -1,4 +1,4 @@ -component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" { +component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" skip="true" { function run( testResults , testBox ) { describe( "Loud test", function() { @@ -36,20 +36,19 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" { it(text,udf); } catch(e) { - //arrayAppend(exceptions, e); + arrayAppend(exceptions, e); } } } } thread action="join" name=arrayToList(names); - /*if(len(exceptions)) { + if(len(exceptions)) { loop array=exceptions item="local.e" { systemOutput(e,1,1); } throw exceptions[1]; - }*/ - + } }