Skip to content

Commit

Permalink
chore(ci): fix some flaky tests (#5900)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evalir committed Sep 27, 2023
1 parent dfa3e4c commit 5bb886f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/chisel/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ mod tests {

// on some CI targets installing results in weird malformed solc files, we try installing it
// multiple times
let version = "0.8.19";
let version = "0.8.20";
for _ in 0..3 {
let mut is_preinstalled = PRE_INSTALL_SOLC_LOCK.lock().unwrap();
if !*is_preinstalled {
Expand Down
5 changes: 4 additions & 1 deletion testdata/cheats/Fs.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,10 @@ contract FsTest is DSTest {
metadata = vm.fsMetadata("fixtures/File/read.txt");
assertEq(metadata.isDir, false);
assertEq(metadata.isSymlink, false);
assertEq(metadata.length, 45);
// This test will fail on windows if we compared to 45, as windows
// ends files with both line feed and carriage return, unlike
// unix which only uses the first one.
assertTrue(metadata.length == 45 || metadata.length == 46);

metadata = vm.fsMetadata("fixtures/File/symlink");
assertEq(metadata.isDir, false);
Expand Down

0 comments on commit 5bb886f

Please sign in to comment.