[llvm] r186206 - Change archive-update.test to create a new file on the fly.

Rafael Espindola rafael.espindola at gmail.com
Fri Jul 12 14:17:17 PDT 2013


Author: rafael
Date: Fri Jul 12 16:17:17 2013
New Revision: 186206

URL: http://llvm.org/viewvc/llvm-project?rev=186206&view=rev
Log:
Change archive-update.test to create a new file on the fly.

Removed:
    llvm/trunk/test/Object/Inputs/Other/
Modified:
    llvm/trunk/test/Object/archive-update.test

Modified: llvm/trunk/test/Object/archive-update.test
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Object/archive-update.test?rev=186206&r1=186205&r2=186206&view=diff
==============================================================================
--- llvm/trunk/test/Object/archive-update.test (original)
+++ llvm/trunk/test/Object/archive-update.test Fri Jul 12 16:17:17 2013
@@ -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.





More information about the llvm-commits mailing list