-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show inlined positions with source code #14427
Show inlined positions with source code #14427
Conversation
4064765
to
f9a2a0a
Compare
It might have been disabled by mistake because bootstrapCmdTests was assumed to be the set of tests for the bootstrapped compiler. The second is an extension for the second with tests that can only be run on the bootstrapped compiler. It is now renamed to bootstrappedOnlyCmdTests to make sure we avoid this potential confusion. Fixes scala#14428
f9a2a0a
to
20e7269
Compare
I'm just curious. Is this further work needed to resolve #13991? |
@deusaquilus the fix to #13991 had to be reverted because it broke the CI (cf #14406), this PR re-enables it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise LGTM.
@@ -56,6 +56,7 @@ cp tests/neg/i6371/B_2.scala $OUT/B.scala | |||
"$SBT" "scalac $OUT/A.scala -d $OUT1" | |||
rm $OUT/A.scala | |||
"$SBT" "scalac -classpath $OUT1 -d $OUT1 $OUT/B.scala" > "$tmp" 2>&1 || echo "ok" | |||
cat "$tmp" # for debugging |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you comment that out or only display it in case the test doesn't pass? Otherwise we get some error output in the CI that could be misinterpreted as a test failure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented out
Re-enable #14002. Fix issue when inlined position sources are not available.
Fixes #13991
Also fixes #14428