Skip to content

Commit

Permalink
Relax asm parse time test threshold for github CI being slow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Oct 24, 2023
1 parent ca7447e commit be5a980
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/asm-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ ${' '.repeat(65530)}x
ret
`;
const output = parser.process(asm, filters);
parseInt(unwrap(output.parsingTime)).should.be.lessThan(200); // reported as ms, generous timeout for ci runner
parseInt(unwrap(output.parsingTime)).should.be.lessThan(500); // reported as ms, generous timeout for ci runner
});
});

Expand Down Expand Up @@ -226,6 +226,6 @@ ${' '.repeat(65530)}x
ret
`;
const output = parser.process(asm, filters);
parseInt(unwrap(output.parsingTime)).should.be.lessThan(200); // reported as ms, generous timeout for ci runner
parseInt(unwrap(output.parsingTime)).should.be.lessThan(500); // reported as ms, generous timeout for ci runner
});
});

0 comments on commit be5a980

Please sign in to comment.