Skip to content

Commit b546d5e

Browse files
committed
.
1 parent 9f6b053 commit b546d5e

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

.github/workflows/stdlib.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,6 @@ jobs:
436436
test-scala3-compiler-bootstrapped:
437437
runs-on: ubuntu-latest
438438
needs: [scala3-compiler-bootstrapped, tasty-core-bootstrapped, scala-library-bootstrapped, scala3-staging, scala3-tasty-inspector]
439-
env:
440-
DOTTY_DISABLE_REPL_BYTECODE_INSTRUMENTATION: true
441439
steps:
442440
- name: Git Checkout
443441
uses: actions/checkout@v5
@@ -552,8 +550,6 @@ jobs:
552550
scripted-tests:
553551
runs-on: ubuntu-latest
554552
needs: [scala3-compiler-bootstrapped, tasty-core-bootstrapped, scala3-staging, scala3-tasty-inspector, scala-library-sjs, scaladoc]
555-
env:
556-
DOTTY_DISABLE_REPL_BYTECODE_INSTRUMENTATION: true
557553
steps:
558554
- name: Git Checkout
559555
uses: actions/checkout@v5

compiler/test/dotty/tools/vulpix/TestConfiguration.scala

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,7 @@ object TestConfiguration {
6565

6666
val commonOptions = Array("-indent") ++ checkOptions ++ noCheckOptions ++ yCheckOptions ++ silenceOptions
6767
val noYcheckCommonOptions = Array("-indent") ++ checkOptions ++ noCheckOptions
68-
69-
// Conditionally add -Xrepl-disable-bytecode-instrumentation when running in CI environments
70-
// that have classloader issues with the new bytecode instrumentation
71-
private val replBytecodeInstrumentationFlag =
72-
if sys.env.isDefinedAt("DOTTY_DISABLE_REPL_BYTECODE_INSTRUMENTATION") then
73-
Array("-Xrepl-disable-bytecode-instrumentation")
74-
else
75-
Array.empty[String]
76-
77-
val defaultOptions = TestFlags(basicClasspath, commonOptions ++ replBytecodeInstrumentationFlag) `and` "-Yno-stdlib-patches"
68+
val defaultOptions = TestFlags(basicClasspath, commonOptions) `and` "-Yno-stdlib-patches"
7869
val noYcheckOptions = TestFlags(basicClasspath, noYcheckCommonOptions)
7970
val bestEffortBaselineOptions = TestFlags(basicClasspath, noCheckOptions)
8071
val unindentOptions = TestFlags(basicClasspath, Array("-no-indent") ++ checkOptions ++ noCheckOptions ++ yCheckOptions)

0 commit comments

Comments
 (0)