diff options
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/LibDriver/thin.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/LibDriver/thin.test b/llvm/test/LibDriver/thin.test new file mode 100644 index 00000000000..4ab9d61952b --- /dev/null +++ b/llvm/test/LibDriver/thin.test @@ -0,0 +1,9 @@ +RUN: echo foo > %t + +RUN: llvm-lib -out:%t.a %t +RUN: FileCheck --check-prefix=FAT %s < %t.a +FAT: !<arch> + +RUN: llvm-lib -out:%t.thin.a -llvmlibthin %t +RUN: FileCheck --check-prefix=THIN %s < %t.thin.a +THIN: !<thin> |

