diff options
author | Rui Ueyama <ruiu@google.com> | 2016-02-02 21:58:39 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-02-02 21:58:39 +0000 |
commit | 327081e25151559ae312cd8b4e2406afbbbe20a6 (patch) | |
tree | 68847041de85448f1679c60786690a38caf6d47c | |
parent | d1f829d374a2e5ebe2bfac29b0f7ebcc0ee8d85e (diff) | |
download | bcm5719-llvm-327081e25151559ae312cd8b4e2406afbbbe20a6.tar.gz bcm5719-llvm-327081e25151559ae312cd8b4e2406afbbbe20a6.zip |
Add "REQUIRES: shell" to fix Windows buildbot.
llvm-svn: 259584
-rw-r--r-- | lld/test/ELF/invalid-linkerscript.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lld/test/ELF/invalid-linkerscript.test b/lld/test/ELF/invalid-linkerscript.test index a69cd3f65ff..01f339e81af 100644 --- a/lld/test/ELF/invalid-linkerscript.test +++ b/lld/test/ELF/invalid-linkerscript.test @@ -1,3 +1,12 @@ +## Different "echo" commands on Windows interpret quoted strings and +## wildcards in similar but different way (On Windows, ARGV tokenization +## and wildcard expansion are not done by the shell but by each command.) +## Because of that reason, this test fails on some Windows environment. +## We can't write quoted strings that are interpreted the same way +## by all echo commands. So, we don't want to run this on Windows. + +# REQUIRES: shell + # RUN: mkdir -p %t.dir ## Note that we are using "-r option is not supported" as a marker |