-
Notifications
You must be signed in to change notification settings - Fork 696
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
Do not check PVP on internal targets (backport of #9004 to 3.10) #9013
Do not check PVP on internal targets (backport of #9004 to 3.10) #9013
Conversation
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.
Fantastic! I could have written 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.
It seems to hiccup on some Werror=unused-imports
, but otherwise looks fine.
Internal targets: test-suites or benchmarks. See haskell#8361 for rationale. Note that this patch is quite ugly (duplicating allBuildInfo, using list comprehensions, etc.) but we don’t care as everything will be overwritten by a much more sensible reimplementation in haskell#8427.
e762fbc
to
ad8279f
Compare
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.
Error: Ambiguous occurrence ‘shrinkBoundedEnum’
@@ -70,6 +70,7 @@ import System.FilePath | |||
|
|||
import qualified Data.ByteString.Lazy as BS | |||
import qualified Data.Map as Map | |||
import qualified Control.Monad as CM |
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.
Shouldn't this be indented the same way? (gremlins…)
shrinkBoundedEnum was fixed on master btw |
7ed7a8e
to
584fc87
Compare
backport
Internal targets: test-suites or benchmarks.
See #8361 for rationale.
Note that this patch is quite ugly (duplicating allBuildInfo, using list comprehensions, etc.) but we don’t care as everything will be overwritten by a much more sensible reimplementation in #8427.
Please include the following checklist in your PR:
Bonus points for added automated tests!