Skip to content

Commit

Permalink
Run all tests with Scala 2 library TASTy
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasstucki committed Nov 29, 2023
1 parent c88c0fe commit ee8416d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true

- name: Test with Scala 2 library TASTy
run: ./project/scripts/sbt ";set ThisBuild/Build.useScala2LibraryTasty := true ;scala3-bootstrapped/testCompilation"
run: ./project/scripts/sbt ";set ThisBuild/Build.useScala2LibraryTasty := true ;scala3-bootstrapped/test"


test_windows_fast:
Expand Down
2 changes: 1 addition & 1 deletion compiler/test/dotty/tools/scripting/ExpressionTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ExpressionTest:
val expected = "9"
val expression = s"println(3*3)"
val result = getResult(expression)
assert(result.contains(expected), s"expression [$expression] did not send [$expected] to stdout")
assert(result.contains(expected), s"expression [$expression] did not send [$expected] to stdout. It send [$result].")

@Test def verifyImports: Unit =
val expressionLines = List(
Expand Down

0 comments on commit ee8416d

Please sign in to comment.