Skip to content
Snippets Groups Projects
Commit 04397c1e authored by Rafael Espindola's avatar Rafael Espindola
Browse files

Change archive-update.test to create a new file on the fly.

llvm-svn: 186206
parent b8b0bf9b
No related branches found
No related tags found
No related merge requests found
newer
...@@ -5,8 +5,12 @@ REQUIRES: shell ...@@ -5,8 +5,12 @@ REQUIRES: shell
RUN: cd %T RUN: cd %T
RUN: rm -f %t.a 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 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 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. 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 ...@@ -14,7 +18,7 @@ RUN: llvm-ar r %t.a %p/Inputs/evenlen
RUN: llvm-ar p %t.a | FileCheck --check-prefix=OLDER %s 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. 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 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. Check that with the 'u' option the member is not replaced with an older file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment