1REQUIRES: shell
2
3Test that no temporary file is left behind on error.
4
5RUN: rm -rf %t
6RUN: mkdir %t
7RUN: not llvm-ar rc %t/foo.a .
8RUN: rmdir %t
9
10