brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.3 KiB · 0d25acd Raw
79 lines · plain
1// REQUIRES: x86,aarch642// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %ta.o3// RUN: llvm-mc -filetype=obj -triple=i686-unknown-linux %s -o %tb.o4// RUN: ld.lld -shared %tb.o -o %ti686.so5// RUN: llvm-mc -filetype=obj -triple=aarch64-unknown-linux %s -o %tc.o6 7// RUN: not ld.lld %ta.o %tb.o -o /dev/null 2>&1 | \8// RUN:   FileCheck --check-prefix=A-AND-B %s9// A-AND-B: error: {{.*}}b.o is incompatible with {{.*}}a.o10 11// RUN: ld.lld --noinhibit-exec %tb.o %tc.o -o /dev/null 2>&1 | \12// RUN:   FileCheck --check-prefix=B-AND-C %s13// B-AND-C: warning: {{.*}}c.o is incompatible with {{.*}}b.o14 15// RUN: not ld.lld %ta.o %ti686.so -o /dev/null 2>&1 | \16// RUN:   FileCheck --check-prefix=A-AND-SO %s17// A-AND-SO: i686.so is incompatible with {{.*}}a.o18 19// RUN: not ld.lld %tc.o %ti686.so -o /dev/null 2>&1 | \20// RUN:   FileCheck --check-prefix=C-AND-SO %s21// C-AND-SO: i686.so is incompatible with {{.*}}c.o22 23// RUN: not ld.lld %ti686.so %tc.o -o /dev/null 2>&1 | \24// RUN:   FileCheck --check-prefix=SO-AND-C %s25// SO-AND-C: c.o is incompatible with {{.*}}i686.so26 27// RUN: not ld.lld -m elf64ppc %ta.o -o /dev/null 2>&1 | \28// RUN:   FileCheck --check-prefix=A-ONLY %s29// A-ONLY: a.o is incompatible with elf64ppc30 31// RUN: not ld.lld -m elf64ppc %tb.o -o /dev/null 2>&1 | \32// RUN:   FileCheck --check-prefix=B-ONLY %s33// B-ONLY: b.o is incompatible with elf64ppc34 35// RUN: not ld.lld -m elf64ppc %tc.o -o /dev/null 2>&1 | \36// RUN:   FileCheck --check-prefix=C-ONLY %s37// C-ONLY: c.o is incompatible with elf64ppc38 39// RUN: not ld.lld -m elf_i386 %tc.o %ti686.so -o /dev/null 2>&1 | \40// RUN:   FileCheck --check-prefix=C-AND-SO-I386 %s41// C-AND-SO-I386: c.o is incompatible with elf_i38642 43// RUN: not ld.lld -m elf_i386 %ti686.so %tc.o -o /dev/null 2>&1 | \44// RUN:   FileCheck --check-prefix=SO-AND-C-I386 %s45// SO-AND-C-I386: c.o is incompatible with elf_i38646 47// RUN: echo 'OUTPUT_FORMAT(elf32-i386)' > %t.script48// RUN: not ld.lld %t.script %ta.o -o /dev/null 2>&1 | \49// RUN:   FileCheck --check-prefix=A-AND-SCRIPT %s50// RUN: not ld.lld %ta.o %t.script -o /dev/null 2>&1 | \51// RUN:   FileCheck --check-prefix=A-AND-SCRIPT %s52// RUN: not ld.lld -m elf_x86_64 %ta.o %t.script -o /dev/null 2>&1 | \53// RUN:   FileCheck --check-prefix=A-AND-SCRIPT %s54// A-AND-SCRIPT: a.o is incompatible with elf32-i38655 56// RUN: echo 'OUTPUT_FORMAT(elf32-i386-freebsd)' > %t-freebsd.script57// RUN: not ld.lld %t-freebsd.script %ta.o -o /dev/null 2>&1 | \58// RUN:   FileCheck --check-prefix=A-AND-FREEBSD-SCRIPT %s59// A-AND-FREEBSD-SCRIPT: a.o is incompatible with elf32-i386-freebsd60 61/// %tb.a is not extracted, but we report an error anyway.62// RUN: rm -f %tb.a && llvm-ar rc %tb.a %tb.o63// RUN: not ld.lld %ta.o %tb.a -o /dev/null 2>&1 | FileCheck --check-prefix=UNEXTRACTED-ARCHIVE %s64// UNEXTRACTED-ARCHIVE: {{.*}}.a({{.*}}b.o) is incompatible with {{.*}}a.o65 66// We used to fail to identify this incompatibility and crash trying to67// read a 64 bit file as a 32 bit one.68// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/archive2.s -o %tc.o69// RUN: rm -f %t.a70// RUN: llvm-ar rc %t.a %tc.o71// RUN: llvm-mc -filetype=obj -triple=i686-linux %s -o %td.o72// RUN: ld.lld --noinhibit-exec %t.a %td.o 2>&1 -o /dev/null | FileCheck --check-prefix=ARCHIVE %s73// ARCHIVE: warning: {{.*}}d.o is incompatible{{$}}74.global _start75_start:76.data77        .long foo78 79