2013-07-13 04:14:13 +00:00
|
|
|
Test the exact archive format. In particular, test which file names use the
|
|
|
|
string table or not.
|
|
|
|
|
|
|
|
RUN: mkdir -p %t
|
|
|
|
RUN: cd %t
|
|
|
|
|
2015-03-03 15:54:48 +00:00
|
|
|
RUN: echo -n bar. > 0123456789abcde
|
|
|
|
RUN: echo -n zed. > 0123456789abcdef
|
2013-07-13 04:14:13 +00:00
|
|
|
|
2015-07-13 20:38:09 +00:00
|
|
|
RUN: rm -f %t.a
|
|
|
|
RUN: llvm-ar --format=gnu rc %t.a 0123456789abcde 0123456789abcdef
|
|
|
|
RUN: cat %t.a | FileCheck -strict-whitespace %s
|
2013-07-13 04:14:13 +00:00
|
|
|
|
|
|
|
CHECK: !<arch>
|
|
|
|
CHECK-NEXT: // 18 `
|
|
|
|
CHECK-NEXT: 0123456789abcdef/
|
2015-07-13 20:38:09 +00:00
|
|
|
CHECK-NEXT: 0123456789abcde/0 0 0 644 4 `
|
|
|
|
CHECK-NEXT: bar./0 0 0 0 644 4 `
|
2015-03-03 15:54:48 +00:00
|
|
|
CHECK-NEXT: zed.
|
2015-07-08 20:47:32 +00:00
|
|
|
|
2015-07-13 20:38:09 +00:00
|
|
|
RUN: rm -f %t.a
|
|
|
|
RUN: llvm-ar --format=bsd rc %t.a 0123456789abcde 0123456789abcdef
|
|
|
|
RUN: cat %t.a | FileCheck -strict-whitespace --check-prefix=BSD %s
|
2015-07-08 20:47:32 +00:00
|
|
|
|
|
|
|
BSD: !<arch>
|
2015-07-13 20:38:09 +00:00
|
|
|
BSD-NEXT: #1/20 0 0 0 644 24 `
|
2015-07-08 20:47:32 +00:00
|
|
|
BSD-NEXT: 0123456789abcde{{.....}}bar.
|
2015-07-13 20:38:09 +00:00
|
|
|
BSD-SAME: #1/16 0 0 0 644 20 `
|
2015-07-08 20:47:32 +00:00
|
|
|
BSD-NEXT: 0123456789abcdefzed.
|
2015-07-15 05:47:46 +00:00
|
|
|
|
|
|
|
RUN: rm -f %t.a
|
|
|
|
RUN: llvm-ar --format=gnu rcT %t.a 0123456789abcde 0123456789abcdef
|
|
|
|
RUN: cat %t.a | FileCheck -strict-whitespace --check-prefix=THIN %s
|
|
|
|
THIN: !<thin>
|
|
|
|
THIN-NEXT: // 36 `
|
|
|
|
THIN-NEXT: 0123456789abcde/
|
|
|
|
THIN-NEXT: 0123456789abcdef/{{$}}
|
|
|
|
THIN: {{^$}}
|
|
|
|
THIN: /0 0 0 0 644 4 `
|
|
|
|
THIN-NEXT: /17 0 0 0 644 4 `
|