This is an automated email from the ASF dual-hosted git repository.
olabusayoT pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new 898923593 Update jline to 3.30.13
898923593 is described below
commit 8989235935b07ad43da28d916f2523dc99769d4c
Author: Scala Steward <[email protected]>
AuthorDate: Tue May 5 14:40:42 2026 +0000
Update jline to 3.30.13
- Move `test_CLI_Tdml_DebugFile_singleTest` to `daffodil-test-integration`
from `daffodil-cli`. We need to fork so we can use the correct jline version
---
.../org/apache/daffodil/cli/cliTest/TestCLItdml.scala | 15 ---------------
.../org/apache/daffodil/cliTest/TestCLIDebugger.scala | 15 +++++++++++++++
project/Dependencies.scala | 2 +-
3 files changed, 16 insertions(+), 16 deletions(-)
diff --git
a/daffodil-cli/src/test/scala/org/apache/daffodil/cli/cliTest/TestCLItdml.scala
b/daffodil-cli/src/test/scala/org/apache/daffodil/cli/cliTest/TestCLItdml.scala
index 244e1c864..b6820864b 100644
---
a/daffodil-cli/src/test/scala/org/apache/daffodil/cli/cliTest/TestCLItdml.scala
+++
b/daffodil-cli/src/test/scala/org/apache/daffodil/cli/cliTest/TestCLItdml.scala
@@ -123,21 +123,6 @@ class TestCLItdml {
}(ExitCode.Success)
}
- @Test def test_CLI_Tdml_DebugFile_singleTest(): Unit = {
- val tdml = path(
-
"daffodil-test/src/test/resources/org/apache/daffodil/section06/entities/Entities.tdml"
- )
- val debugFile = path(
- "daffodil-cli/src/test/resources/org/apache/daffodil/cli/debug.txt"
- )
-
- runCLI(args"test -d $debugFile $tdml byte_entities_6_08") { cli =>
- cli.expect("(debug)")
- cli.expect("Usage:")
- cli.expect("[Pass] byte_entities_6_08")
- }(ExitCode.Success)
- }
-
@Test def test_CLI_catch_TestNotCompatible(): Unit = {
val tdml = path(
"daffodil-cli/src/test/resources/org/apache/daffodil/cli/testNonCompatibleImplementation.tdml"
diff --git
a/daffodil-test-integration/src/test/scala/org/apache/daffodil/cliTest/TestCLIDebugger.scala
b/daffodil-test-integration/src/test/scala/org/apache/daffodil/cliTest/TestCLIDebugger.scala
index 68c64e1b2..626dc019a 100644
---
a/daffodil-test-integration/src/test/scala/org/apache/daffodil/cliTest/TestCLIDebugger.scala
+++
b/daffodil-test-integration/src/test/scala/org/apache/daffodil/cliTest/TestCLIDebugger.scala
@@ -1310,4 +1310,19 @@ class TestCLIDebugger {
}(ExitCode.Success)
}
+ @Test def test_CLI_Tdml_DebugFile_singleTest(): Unit = {
+ val tdml = path(
+
"daffodil-test/src/test/resources/org/apache/daffodil/section06/entities/Entities.tdml"
+ )
+ val debugFile = path(
+ "daffodil-cli/src/test/resources/org/apache/daffodil/cli/debug.txt"
+ )
+
+ runCLI(args"test -d $debugFile $tdml byte_entities_6_08", fork = true,
envs = envs) { cli =>
+ cli.expect("(debug)")
+ cli.expect("Usage:")
+ cli.expect("[Pass] byte_entities_6_08")
+ }(ExitCode.Success)
+ }
+
}
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 609df99d3..bb60cb502 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -43,7 +43,7 @@ object Dependencies {
)
lazy val cli = Seq(
- "org.jline" % "jline" % "3.30.6",
+ "org.jline" % "jline" % "3.30.13",
"org.rogach" %% "scallop" % "5.3.0",
"net.sf.expectit" % "expectit-core" % "0.9.0" % "test"
)