Skip to content

Commit

Permalink
ignored shaky tests in JSONIOTests until #2133 is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Jan 29, 2025
1 parent 405cbb1 commit 9437c14
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ data DATA3 = data3(int n, str kw = "abc");
data Enum = x() | y() | z();
data DATA4 = data4(Enum e = x());

@ignore{until #2133 is fixed}
test bool writeReadIsTheSameAsAsJSONparseJSON(value example) {
jsonFile = |memory://jsontests/example.json|;
writeJSON(jsonFile, example);
Expand Down Expand Up @@ -78,6 +79,7 @@ test bool jsonWithDATA23(DATA2 dt) = writeRead(#DATA2, dt, explicitConstructorNa
However sets are always read back in as lists if we don't have
a specific abstract data-type that can enforce sets.
}
@ignore{until #2133 is fixed}
test bool jsonRandom1(value dt) = writeRead(#value, dt, normalizer=toDefaultRec);

test bool json1() = writeRead(#DATA1, data1(123));
Expand Down

0 comments on commit 9437c14

Please sign in to comment.