@@ -58,11 +58,13 @@ class NativeCliRuntimeIT extends AnyFunSpec
5858 private val INPUT_FILE_PATTERN = Pattern .compile(" in[0-9]+\\ .[a-zA-Z]+" )
5959 private val OUTPUT_FILE_PATTERN = Pattern .compile(" out\\ .[a-zA-Z]+" )
6060
61- private val versionString : String = DataWeaveVersion (ComponentVersion .weaveSuiteVersion).toString()
61+ private val weaveVersion = System .getProperty(" weaveSuiteVersion" , ComponentVersion .weaveVersion)
62+ println(s " ****** Running with weaveSuiteVersion: $weaveVersion ******* " )
63+ private val versionString : String = DataWeaveVersion (weaveVersion).toString()
6264
6365 val testSuites = Seq (
64- TestSuite (" master" , loadTestZipFile(s " weave-suites/runtime- ${ ComponentVersion .weaveSuiteVersion} -test.zip " )),
65- TestSuite (" yaml" , loadTestZipFile(s " weave-suites/yaml-module- ${ ComponentVersion .weaveSuiteVersion} -test.zip " ))
66+ TestSuite (" master" , loadTestZipFile(s " weave-suites/runtime- $weaveVersion -test.zip " )),
67+ TestSuite (" yaml" , loadTestZipFile(s " weave-suites/yaml-module- $weaveVersion -test.zip " ))
6668 )
6769
6870 private def loadTestZipFile (testSuiteExample : String ): File = {
@@ -366,6 +368,7 @@ class NativeCliRuntimeIT extends AnyFunSpec
366368 " import-lib-with-alias" ,
367369 " import-named-lib" ,
368370 " import-star" ,
371+ " lazy_metadata_definition" ,
369372 " module-singleton" ,
370373 " multipart-write-binary" ,
371374 " read-binary-files" ,
@@ -397,6 +400,7 @@ class NativeCliRuntimeIT extends AnyFunSpec
397400 Array (" update-op" ) ++
398401 // Take too long time
399402 Array (" array-concat" ) ++
403+ Array (" big_intersection" ) ++
400404 Array (" sql_date_mapping" ) ++
401405 Array (" runtime_run" )
402406
@@ -426,12 +430,17 @@ class NativeCliRuntimeIT extends AnyFunSpec
426430 Array (" as-operator" ,
427431 " type-equality"
428432 ) ++
429- Array (" xml_doctype" , " stringutils_unwrap" )
433+ Array (" xml_doctype" , " stringutils_unwrap" , " weave_ast_module " )
430434 } else if (versionString == " 2.5" ) {
431435 baseArray ++
432436 Array (" xml_doctype" , " stringutils_unwrap" )
433- }
434- else {
437+ } else if (versionString == " 2.6" ) {
438+ baseArray ++
439+ Array (" weave_ast_module" )
440+ } else if (versionString == " 2.7" ) {
441+ baseArray ++
442+ Array (" weave_ast_module" )
443+ } else {
435444 baseArray
436445 }
437446 testToIgnore
0 commit comments