Skip to content

Commit

Permalink
chore [ci]: Again disable throwables symbols tests on Windows (#3792)
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Feb 27, 2024
1 parent b489dce commit 7af09c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/run-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ jobs:
set SCALANATIVE_INCLUDE_DIRS=${{steps.setup.outputs.vcpkg-dir}}\include&
set SCALANATIVE_LIB_DIRS=${{steps.setup.outputs.vcpkg-dir}}\lib&
set SCALANATIVE_TEST_PREFETCH_DEBUG_INFO=1&
set SCALANATIVE_CI_NO_DEBUG_SYMBOLS=true&
set SCALANATIVE &
sbt "test-runtime ${{matrix.scala}}"
shell: cmd
Expand Down
2 changes: 1 addition & 1 deletion javalib/src/main/scala/java/lang/StackTraceElement.scala
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private[lang] object StackTraceElement {
)
val filename =
if (position.filename != null || fileName == null) position.filename
else fromCString(fileName)
else fromCString(fileName).trim()
val line =
if (position.line > 0 || filename == null) position.line
else !lineOut
Expand Down

0 comments on commit 7af09c7

Please sign in to comment.