Skip to content

Commit

Permalink
Fix gnu and msvc smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
NobodyXu authored Nov 19, 2024
1 parent c8dc108 commit d62d76e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn gnu_smoke() {
.must_have("-ffunction-sections")
.must_have("-fdata-sections");
test.cmd(1)
.must_have(test.td.path().join("d1fba762150c532c-foo.o"));
.must_have(test.td.path().join("db3b6bfb95261072-foo.o"));
}

#[test]
Expand Down Expand Up @@ -434,7 +434,7 @@ fn msvc_smoke() {
.must_have("-c")
.must_have("-MD");
test.cmd(1)
.must_have(test.td.path().join("d1fba762150c532c-foo.o"));
.must_have(test.td.path().join("db3b6bfb95261072-foo.o"));
}

#[test]
Expand Down

0 comments on commit d62d76e

Please sign in to comment.