disable tests for ppx_minidebug.2.{3,4}.0 - #30183
Merged
Merged
Conversation
There is reason to believe these are failing due to brittle text fixtures, creating noise in revdeps runs for other packages.
shonfeder
marked this pull request as draft
July 2, 2026 19:18
These fail with unrelated errors such as the following:
```
--- a/_build/default/test/test_debug_log_nothing.expected.ml
+++ b/_build/default/test/test_debug_log_nothing.actual.ml
@@ -2,10 +2,10 @@ module Debug_runtime = (val
Minidebug_runtime.debug_flushing ~filename:"debugger_show_log_nothing" ())
;;()
let rec loop_exceeded (x : int) =
- (let z = (); (x - 1) / 2 in
+ (let z : int = (); (x - 1) / 2 in
if x <= 0 then 0 else z + (loop_exceeded (z + (x / 2))) : int)
let () =
try print_endline @@ (Int.to_string @@ (loop_exceeded 17))
with | _ -> print_endline "Raised exception."
-let bar () = (for i = 0 to 100 do let _baz = i * 2 in () done : unit)
+let bar () = (for i = 0 to 100 do let _baz : int = i * 2 in () done : unit)
let () = try bar () with | _ -> print_endline "Raised exception."
```
shonfeder
marked this pull request as ready for review
July 2, 2026 19:29
jmid
approved these changes
Jul 2, 2026
jmid
left a comment
Member
There was a problem hiding this comment.
Thanks!
CI is just waiting for the dog-slow riscv64 jobs to complete - feel free to merge before!
Member
Author
|
Will do so! Thanks :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There is reason to believe these are failing due to brittle text fixtures, creating noise in revdeps runs for other packages.
See the discussion in #30157 (comment) and preceding.
The CI results in the initial commit c6c567d show that the tests for these package versions fail due to unsatisfied expectations in the test expectations, such as
Maybe it's due to changes in the ppxlib or the compiler. In any case, this creates noise in revdeps tests, so the next commit disables the tests.
FYI @lukstafi