These were previously re-enabled ind771f54107, but had to be disabled again in2060a72b4ddue to test failures. This is a next step to landing https://reviews.llvm.org/D148192, which adds a skeleton JITLink backend for PowerPC. The fixes for those failures were (1) to explicitly specify IsLittleEndian = true for the MachO YAML testcases, (2) disable some example tests for examples that aren't supported on PowerPC yet, and (3) fixing the endianness of a relocation read/write (for ELF R_AARCH64_TSTBR14) in RuntimeDyldELF.
16 lines
681 B
Plaintext
16 lines
681 B
Plaintext
# This test makes sure that the example builds and executes as expected.
|
|
# Instructions for debugging can be found in LLJITWithRemoteDebugging.cpp
|
|
|
|
# REQUIRES: default_triple
|
|
# UNSUPPORTED: target=powerpc64{{.*}}
|
|
|
|
# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll | FileCheck --check-prefix=CHECK0 %s
|
|
# CHECK0: Parsing input IR code from: {{.*}}/Inputs/argc_sub1_elf.ll
|
|
# CHECK0: Running: main()
|
|
# CHECK0: Exit code: 0
|
|
|
|
# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll --args 2nd 3rd 4th | FileCheck --check-prefix=CHECK3 %s
|
|
# CHECK3: Parsing input IR code from: {{.*}}/Inputs/argc_sub1_elf.ll
|
|
# CHECK3: Running: main("2nd", "3rd", "4th")
|
|
# CHECK3: Exit code: 3
|