diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-12 21:17:17 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-12 21:17:17 +0000 |
commit | 0878d701cb62ebd69faf823e81c55f7e0e10d598 (patch) | |
tree | f7763ce0c389b0694d4a79cb016d74345f27eeda | |
parent | e32d32d317630864efe1b8007124a983e3907196 (diff) | |
download | external_llvm-0878d701cb62ebd69faf823e81c55f7e0e10d598.zip external_llvm-0878d701cb62ebd69faf823e81c55f7e0e10d598.tar.gz external_llvm-0878d701cb62ebd69faf823e81c55f7e0e10d598.tar.bz2 |
Change archive-update.test to create a new file on the fly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186206 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Object/Inputs/Other/evenlen | 1 | ||||
-rw-r--r-- | test/Object/archive-update.test | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/test/Object/Inputs/Other/evenlen b/test/Object/Inputs/Other/evenlen deleted file mode 100644 index d58ed19..0000000 --- a/test/Object/Inputs/Other/evenlen +++ /dev/null @@ -1 +0,0 @@ -newer diff --git a/test/Object/archive-update.test b/test/Object/archive-update.test index c8e5afb..c381fff 100644 --- a/test/Object/archive-update.test +++ b/test/Object/archive-update.test @@ -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. |