Skip to content

Commit 62f2933

Browse files
committed
fix win test
1 parent 6b907d1 commit 62f2933

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
24+
os: ["windows-latest"]
2525
rust: ["stable", "1.83"]
26-
flags: ["", "--all-features"]
26+
flags: ["", "--all-features --no-fail-fast"]
2727
exclude:
2828
# Skip because some features have higher MSRV.
2929
- rust: "1.83" # MSRV

crates/compilers/src/lib.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -911,11 +911,10 @@ fn replace_source_content<'a>(
911911
let mut offset = 0;
912912
let mut content = source.as_bytes().to_vec();
913913
for (range, new_value) in updates {
914-
let start = (range.start as isize + offset) as usize;
915-
let end = (range.end as isize + offset) as usize;
914+
let update_range = utils::range_by_offset(&range, offset);
916915

917-
content.splice(start..end, new_value.bytes());
918-
offset += new_value.len() as isize - (end - start) as isize;
916+
content.splice(update_range.start..update_range.end, new_value.bytes());
917+
offset += new_value.len() as isize - (update_range.end - update_range.start) as isize;
919918
}
920919

921920
String::from_utf8(content).unwrap()

crates/compilers/src/preprocessor/mod.rs

+13-9
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ use crate::{
1313
use alloy_primitives::hex;
1414
use foundry_compilers_artifacts::{SolcLanguage, Source};
1515
use foundry_compilers_core::{error::SolcError, utils};
16-
use itertools::Itertools;
1716
use md5::Digest;
1817
use solar_parse::{
1918
ast::{FunctionKind, ItemKind, Span, Visibility},
@@ -65,14 +64,19 @@ impl Preprocessor<SolcCompiler> for TestOptimizerPreprocessor {
6564
}
6665
// Load and parse test and script contracts only (dependencies are automatically
6766
// resolved).
68-
let preprocessed_paths = sources
69-
.into_iter()
70-
.filter(|(path, source)| {
71-
is_test_or_script(path, paths) && !source.content.is_empty()
72-
})
73-
.map(|(path, _)| path.clone())
74-
.collect_vec();
75-
parsing_context.load_files(&preprocessed_paths)?;
67+
68+
let mut preprocessed_paths = vec![];
69+
for (path, source) in sources.iter() {
70+
if is_test_or_script(path, paths) && !source.content.is_empty() {
71+
if let Ok(src_file) = sess
72+
.source_map()
73+
.new_dummy_source_file(path.clone(), source.content.to_string())
74+
{
75+
parsing_context.add_file(src_file);
76+
preprocessed_paths.push(path.clone());
77+
}
78+
}
79+
}
7680

7781
let hir_arena = ThreadLocal::new();
7882
if let Some(gcx) = parsing_context.parse_and_lower(&hir_arena)? {

0 commit comments

Comments
 (0)