Skip to content

Commit

Permalink
fix broken paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Kumar committed Jan 2, 2025
1 parent 2321a07 commit 83697cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/magic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod tests {
pub const TEST_BUILD_PATH: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/build");
pub const COLBUF_LAYOUT_PATH: &str = concat!(
env!("CARGO_MANIFEST_DIR"),
"../../examples2/colbuf/test_col_buffer_array.gds"
"/../../examples2/colbuf/test_col_buffer_array.gds"
);
pub const SKY130_TECH_FILE: &str = concat!(env!("OPEN_PDKS_ROOT"), "/sky130/magic/sky130.tech");
}
2 changes: 1 addition & 1 deletion tools/spectre/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use crate::{
};

const BUILD_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/build");
const TEST_DATA_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "../../tests/data");
const TEST_DATA_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/../../tests/data");

#[inline]
fn get_path(test_name: &str, file_name: &str) -> PathBuf {
Expand Down

0 comments on commit 83697cc

Please sign in to comment.