Skip to content

Commit

Permalink
Fix compilation_outputs_test on Windows with latest Bazel (#3623)
Browse files Browse the repository at this point in the history
Bazel now adds the repo mapping manifest to runfiles. It shows up in the
output of `ListRunfiles` on Windows, where it should be ignored.
  • Loading branch information
fmeum committed Jul 13, 2023
1 parent c8d7596 commit d2a3cf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/core/output_groups/compilation_outputs_test.go
Expand Up @@ -22,7 +22,8 @@ func TestCompilationOutputs(t *testing.T) {
exe = ".exe"
}
expectedFiles := map[string]bool{
"compilation_outputs_test" + exe: true, // test binary; not relevant
"compilation_outputs_test" + exe: true, // test binary; not relevant
"compilation_outputs_test" + exe + ".repo_mapping": true, // test binary repo mapping; not relevant

"lib.a": false, // :lib archive
"lib_test.internal.a": false, // :lib_test archive
Expand Down

0 comments on commit d2a3cf2

Please sign in to comment.