Skip to content

Commit

Permalink
comment that isCoherent_Lattice and isCoherent_RType occasionally…
Browse files Browse the repository at this point in the history
… fail
  • Loading branch information
Jakobeha committed Jun 28, 2024
1 parent f8f4335 commit c39e5c7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/org/prlprg/ir/type/LatticeTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ static void setup() {
RGenericValueType.ENABLE_WEIRD_CASE_LOGS = false;
}

/** FIXME(jakob): This fails occasionally, closure types need to be fixed. */
@Property(generation = GenerationMode.RANDOMIZED, tries = 100)
void isCoherent_Lattice(
@ForAll("latticePairsAndClasses") Tuple3<Object, Object, Object> lattices) {
Expand All @@ -88,6 +89,7 @@ void isCoherent_REffects(@ForAll REffects lhs, @ForAll REffects rhs) {
isCoherent(lhs, rhs, REffects.ARBITRARY, REffects.PURE);
}

/** FIXME(jakob): This fails occasionally, closure types need to be fixed. */
@Property(generation = GenerationMode.RANDOMIZED, tries = 100)
void isCoherent_RType(@ForAll RType lhs, @ForAll RType rhs) {
isCoherent(lhs, rhs, RTypes.ANY, RTypes.NOTHING);
Expand Down

0 comments on commit c39e5c7

Please sign in to comment.