mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
Add a test for llvm-ar's u option.
llvm-svn: 186192
This commit is contained in:
parent
7645224e44
commit
b62b63af64
1
test/Object/Inputs/AUX/evenlen
Normal file
1
test/Object/Inputs/AUX/evenlen
Normal file
@ -0,0 +1 @@
|
|||||||
|
newer
|
25
test/Object/archive-update.test
Normal file
25
test/Object/archive-update.test
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
Test the 'u' option of llvm-ar
|
||||||
|
|
||||||
|
REQUIRES: shell
|
||||||
|
|
||||||
|
RUN: cd %T
|
||||||
|
RUN: rm -f %t.a
|
||||||
|
|
||||||
|
Create an achive with the newest file
|
||||||
|
RUN: llvm-ar r %t.a %p/Inputs/AUX/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.
|
||||||
|
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/AUX/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.
|
||||||
|
RUN: llvm-ar ru %t.a %p/Inputs/evenlen
|
||||||
|
RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s
|
||||||
|
|
||||||
|
NEWER: newer
|
||||||
|
OLDER: evenlen
|
Loading…
Reference in New Issue
Block a user