Change archive-update.test to create a new file on the fly.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 12 Jul 2013 21:17:17 +0000 (21:17 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 12 Jul 2013 21:17:17 +0000 (21:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186206 91177308-0d34-0410-b5e6-96231b3b80d8

test/Object/Inputs/Other/evenlen [deleted file]
test/Object/archive-update.test

diff --git a/test/Object/Inputs/Other/evenlen b/test/Object/Inputs/Other/evenlen
deleted file mode 100644 (file)
index d58ed19..0000000
+++ /dev/null
@@ -1 +0,0 @@
-newer
index c8e5afb71a3cf1b1b350e2261384ad66082fe0ac..c381fff2bfc59e7420803047e9c3627acb892b53 100644 (file)
@@ -5,8 +5,12 @@ REQUIRES: shell
 RUN: cd %T
 RUN: rm -f %t.a
 
+Create a file named evenlen that is newer than the evenlen on the source dir.
+RUN: mkdir -p %t.dir
+RUN: echo newer > %t.dir/evenlen
+
 Create an achive with the newest file
-RUN: llvm-ar r %t.a %p/Inputs/Other/evenlen
+RUN: llvm-ar r %t.a %t.dir/evenlen
 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s
 
 Check that without the 'u' option the member is replaced with an older file.
@@ -14,7 +18,7 @@ RUN: llvm-ar r %t.a %p/Inputs/evenlen
 RUN: llvm-ar p %t.a | FileCheck --check-prefix=OLDER %s
 
 Check that with the 'u' option the member is replaced with a newer file.
-RUN: llvm-ar ru %t.a %p/Inputs/Other/evenlen
+RUN: llvm-ar ru %t.a %t.dir/evenlen
 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s
 
 Check that with the 'u' option the member is not replaced with an older file.