llvm-6502/test/Object/archive-update.test
Rafael Espindola 94803598aa Add a test for llvm-ar's u option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186192 91177308-0d34-0410-b5e6-96231b3b80d8
2013-07-12 19:34:24 +00:00

26 lines
761 B
Plaintext

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