2013-07-12 19:34:24 +00:00
|
|
|
Test the 'u' option of llvm-ar
|
|
|
|
|
|
|
|
REQUIRES: shell
|
|
|
|
|
|
|
|
RUN: cd %T
|
|
|
|
RUN: rm -f %t.a
|
|
|
|
|
2013-07-12 21:17:17 +00:00
|
|
|
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
|
|
|
|
|
2013-07-12 19:34:24 +00:00
|
|
|
Create an achive with the newest file
|
2013-07-12 21:17:17 +00:00
|
|
|
RUN: llvm-ar r %t.a %t.dir/evenlen
|
2013-07-12 19:34:24 +00:00
|
|
|
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.
|
|
|
|
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.
|
2013-07-12 21:17:17 +00:00
|
|
|
RUN: llvm-ar ru %t.a %t.dir/evenlen
|
2013-07-12 19:34:24 +00:00
|
|
|
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.
|
|
|
|
RUN: llvm-ar ru %t.a %p/Inputs/evenlen
|
|
|
|
RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s
|
|
|
|
|
|
|
|
NEWER: newer
|
|
|
|
OLDER: evenlen
|