Rafael Espindola | a7f6913 | 2013-07-11 13:44:10 +0000 | [diff] [blame] | 1 | Test reading an archive created by gnu ar |
NAKAMURA Takumi | aaaec3d | 2013-07-12 02:34:45 +0000 | [diff] [blame] | 2 | RUN: env TZ=GMT llvm-ar tv %p/Inputs/GNU.a | FileCheck %s --check-prefix=GNU -strict-whitespace |
Rafael Espindola | b1c1c5f | 2013-07-11 15:35:23 +0000 | [diff] [blame] | 3 | |
Chandler Carruth | 0ef74f5 | 2014-04-28 01:24:32 +0000 | [diff] [blame] | 4 | GNU: rw-r--r-- 500/500 8 2004-11-19 02:57:37.000000000 evenlen |
| 5 | GNU-NEXT: rw-r--r-- 500/500 7 2004-11-19 02:57:21.000000000 oddlen |
| 6 | GNU-NEXT: rwxr-xr-x 500/500 1465 2004-11-19 03:01:31.000000000 very_long_bytecode_file_name.bc |
| 7 | GNU-NEXT: rw-r--r-- 500/500 2280 2004-11-19 03:04:30.000000000 IsNAN.o |
Rafael Espindola | b1c1c5f | 2013-07-11 15:35:23 +0000 | [diff] [blame] | 8 | |
Rafael Espindola | a7f6913 | 2013-07-11 13:44:10 +0000 | [diff] [blame] | 9 | |
| 10 | Test reading an archive createdy by Mac OS X ar |
NAKAMURA Takumi | aaaec3d | 2013-07-12 02:34:45 +0000 | [diff] [blame] | 11 | RUN: env TZ=GMT llvm-ar tv %p/Inputs/MacOSX.a | FileCheck %s --check-prefix=OSX -strict-whitespace |
Rafael Espindola | b1c1c5f | 2013-07-11 15:35:23 +0000 | [diff] [blame] | 12 | |
Rafael Espindola | 3e2b21c | 2013-07-12 20:21:39 +0000 | [diff] [blame] | 13 | OSX-NOT: __.SYMDEF |
Chandler Carruth | 0ef74f5 | 2014-04-28 01:24:32 +0000 | [diff] [blame] | 14 | OSX: rw-r--r-- 501/501 8 2004-11-19 02:57:37.000000000 evenlen |
| 15 | OSX-NEXT: rw-r--r-- 501/501 8 2004-11-19 02:57:21.000000000 oddlen |
| 16 | OSX-NEXT: rw-r--r-- 502/502 1465 2010-02-04 06:59:14.000000000 very_long_bytecode_file_name.bc |
| 17 | OSX-NEXT: rw-r--r-- 501/501 2280 2004-11-19 04:32:06.000000000 IsNAN.o |
Rafael Espindola | a7f6913 | 2013-07-11 13:44:10 +0000 | [diff] [blame] | 18 | |
| 19 | Test reading an archive created on Solaris by /usr/ccs/bin/ar |
NAKAMURA Takumi | aaaec3d | 2013-07-12 02:34:45 +0000 | [diff] [blame] | 20 | RUN: env TZ=GMT llvm-ar tv %p/Inputs/SVR4.a | FileCheck %s -strict-whitespace |
Rafael Espindola | a7f6913 | 2013-07-11 13:44:10 +0000 | [diff] [blame] | 21 | |
| 22 | Test reading an archive created on Solaris by /usr/xpg4/bin/ar |
NAKAMURA Takumi | aaaec3d | 2013-07-12 02:34:45 +0000 | [diff] [blame] | 23 | RUN: env TZ=GMT llvm-ar tv %p/Inputs/xpg4.a | FileCheck %s -strict-whitespace |
Rafael Espindola | a7f6913 | 2013-07-11 13:44:10 +0000 | [diff] [blame] | 24 | |
Chandler Carruth | 0ef74f5 | 2014-04-28 01:24:32 +0000 | [diff] [blame] | 25 | CHECK: rw-r--r-- 1002/102 8 2004-11-19 03:24:02.000000000 evenlen |
| 26 | CHECK-NEXT: rw-r--r-- 1002/102 7 2004-11-19 03:24:02.000000000 oddlen |
| 27 | CHECK-NEXT: rwxr-xr-x 1002/102 1465 2004-11-19 03:24:02.000000000 very_long_bytecode_file_name.bc |
| 28 | CHECK-NEXT: rw-r--r-- 1002/102 2280 2004-11-19 03:24:02.000000000 IsNAN.o |
Rafael Espindola | 9d10206 | 2014-12-16 01:43:41 +0000 | [diff] [blame] | 29 | |
| 30 | Test reading a thin archive created by gnu ar |
| 31 | RUN: env TZ=GMT llvm-ar tv %p/Inputs/thin.a | FileCheck %s --check-prefix=THIN -strict-whitespace |
| 32 | |
| 33 | THIN: rw-r--r-- 1000/1000 8 2014-12-16 00:56:27.000000000 evenlen |
| 34 | THIN-NEXT: rw-r--r-- 1000/1000 7 2014-12-16 00:56:27.000000000 oddlen |
| 35 | THIN-NEXT: rwxr-xr-x 1000/1000 1465 2014-12-16 00:56:27.000000000 very_long_bytecode_file_name.bc |
| 36 | THIN-NEXT: rw-r--r-- 1000/1000 2280 2014-12-16 00:56:27.000000000 IsNAN.o |
Rafael Espindola | 4104fe8 | 2015-07-08 22:27:54 +0000 | [diff] [blame] | 37 | |
| 38 | Test reading an archive with just a symbol table. We use to reject them. |
| 39 | RUN: llvm-ar tv %p/Inputs/symtab-only.a | FileCheck --allow-empty --check-prefix=EMPTY %s |
| 40 | EMPTY-NOT: {{.}} |
Rafael Espindola | c60d0d2 | 2015-07-13 23:07:05 +0000 | [diff] [blame^] | 41 | |
| 42 | Test reading a thin archive with directory names. |
| 43 | RUN: env TZ=GMT llvm-ar tv %p/Inputs/thin-path.a | FileCheck %s --check-prefix=THINPATH -strict-whitespace |
| 44 | |
| 45 | THINPATH: rw-r--r-- 0/0 1224 1970-01-01 00:00:00.000000000 test.o |
| 46 | THINPATH-NEXT: rw-r--r-- 0/0 1224 1970-01-01 00:00:00.000000000 t/test2.o |