Skip to content

Commit

Permalink
Skip test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Nov 12, 2024
1 parent 08235a9 commit c2226bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/test/shell/bazel/unicode_filenames_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,13 @@ EOF
}

function test_cc_dependency_with_utf8_filename() {
local -r unicode='äöüÄÖÜß🌱'
# TODO: Find a way to get cl.exe to output Unicode when not running in a
# console or migrate to /sourceDependencies.
if $is_windows; then
echo "Skipping test on Windows." && return
fi

local unicode="äöüÄÖÜß🌱"

setup_module_dot_bazel

Expand Down

0 comments on commit c2226bd

Please sign in to comment.