From 95779b65cf7b7d7c22bf2d22d03c661c8130cbe2 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 16 Jul 2013 16:00:32 +0000 Subject: On error, close the temporary file descriptor. With this change llvm-ar can remove the temporary file on windows too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186423 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Object/archive-error-tmp.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/Object/archive-error-tmp.txt (limited to 'test/Object') diff --git a/test/Object/archive-error-tmp.txt b/test/Object/archive-error-tmp.txt new file mode 100644 index 0000000..0618986 --- /dev/null +++ b/test/Object/archive-error-tmp.txt @@ -0,0 +1,9 @@ +REQUIRES: shell + +Test that no temporary file is left behind on error. + +RUN: rm -rf %t +RUN: mkdir %t +RUN: not llvm-ar rc %t/foo.a . +RUN: rmdir %t + -- cgit v1.1