diff options
author | Rui Ueyama <ruiu@google.com> | 2013-11-04 19:01:57 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-11-04 19:01:57 +0000 |
commit | 5efbc6379eea695b472ac246133bb99d23b9d9bb (patch) | |
tree | a858fe5004f9e79a563bc485275ebe808726157e | |
parent | 3fb1710910bf320c1b08e59faacaf1e203eca319 (diff) | |
download | bcm5719-llvm-5efbc6379eea695b472ac246133bb99d23b9d9bb.tar.gz bcm5719-llvm-5efbc6379eea695b472ac246133bb99d23b9d9bb.zip |
[PECOFF] Fix the test to run.
llvm-svn: 194003
-rw-r--r-- | lld/test/pecoff/resource.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/pecoff/resource.test b/lld/test/pecoff/resource.test index 0e73282f52c..243d02b6a81 100644 --- a/lld/test/pecoff/resource.test +++ b/lld/test/pecoff/resource.test @@ -5,5 +5,5 @@ # RUN: lld -flavor link /out:%t.exe /subsystem:console /entry:start /opt:noref \ # RUN: -- %t.obj %p/Inputs/resource.res -# Check if the binary contains UTF-16 string "Hello" copied from resource.res. -# cat %t.exe | grep 'H.e.l.l.o' +# Check if the binary contains UTF-16LE string "Hello" copied from resource.res. +# RUN: cat %t.exe | grep 'H.e.l.l.o' |