This enables lit to work with unicode file names via mkdir, rm, and redirection. Lit still uses utf-8 internally, but converts to utf-16 on Windows, or just utf-8 bytes on everything else. Committed on behalf of Jason Mittertreiner Differential Revision: https://reviews.llvm.org/D56754 llvm-svn: 355122
8 lines
204 B
Plaintext
8 lines
204 B
Plaintext
# Check removing unicode
|
|
#
|
|
# RUN: mkdir -p Output/中文
|
|
# RUN: echo "" > Output/中文/你好.txt
|
|
# RUN: rm Output/中文/你好.txt
|
|
# RUN: echo "" > Output/中文/你好.txt
|
|
# RUN: rm -r Output/中文
|