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 | 04397c1e9c8e6663b02ddfcb2e9a9af4e6b54871 (patch) | |
tree | 418cdaf523c0eca056492cd3836ce5f1969b8b59 | |
parent | b8b0bf9b81de68d4e6776265cb3db75ae6315336 (diff) | |
download | bcm5719-llvm-04397c1e9c8e6663b02ddfcb2e9a9af4e6b54871.tar.gz bcm5719-llvm-04397c1e9c8e6663b02ddfcb2e9a9af4e6b54871.zip |
Change archive-update.test to create a new file on the fly.
llvm-svn: 186206
-rw-r--r-- | llvm/test/Object/Inputs/Other/evenlen | 1 | ||||
-rw-r--r-- | llvm/test/Object/archive-update.test | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/llvm/test/Object/Inputs/Other/evenlen b/llvm/test/Object/Inputs/Other/evenlen deleted file mode 100644 index d58ed19c91e..00000000000 --- a/llvm/test/Object/Inputs/Other/evenlen +++ /dev/null @@ -1 +0,0 @@ -newer diff --git a/llvm/test/Object/archive-update.test b/llvm/test/Object/archive-update.test index c8e5afb71a3..c381fff2bfc 100644 --- a/llvm/test/Object/archive-update.test +++ b/llvm/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. |