diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-11-29 07:58:32 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-11-29 07:58:32 +0000 |
commit | 6ea8a947e8eb997a39e11a8a315e50b66294a1aa (patch) | |
tree | 830ff3ddd375446b0bc3588dcef714c6807f9e0a /llvm/test/Feature | |
parent | abcab28f9b96356c0db3315116e44af76d044970 (diff) | |
download | bcm5719-llvm-6ea8a947e8eb997a39e11a8a315e50b66294a1aa.tar.gz bcm5719-llvm-6ea8a947e8eb997a39e11a8a315e50b66294a1aa.zip |
test: Check the feature 'loadable_module' with load modules in %llvmshlibdir.
%llvmshlibdir should be 'bin' on Cygming.
llvm-svn: 120282
Diffstat (limited to 'llvm/test/Feature')
-rw-r--r-- | llvm/test/Feature/load_module.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/test/Feature/load_module.ll b/llvm/test/Feature/load_module.ll index e2e222f4edc..05f6c238134 100644 --- a/llvm/test/Feature/load_module.ll +++ b/llvm/test/Feature/load_module.ll @@ -1,6 +1,8 @@ ; PR1318 -; RUN: opt < %s -load=%llvmlibsdir/LLVMHello%shlibext -hello \ +; RUN: opt < %s -load=%llvmshlibdir/LLVMHello%shlibext -hello \ ; RUN: -disable-output |& grep Hello +; REQUIRES: loadable_module +; FIXME: On Cygming, it might fail without building LLVMHello manually. @junk = global i32 0 |