1# This test makes sure that the example builds and executes as expected. 2# Instructions for debugging can be found in LLJITWithRemoteDebugging.cpp 3 4# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll | FileCheck --check-prefix=CHECK0 %s 5# CHECK0: Parsing input IR code from: {{.*}}/Inputs/argc_sub1_elf.ll 6# CHECK0: Running: main() 7# CHECK0: Exit code: 0 8 9# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll --args 2nd 3rd 4th | FileCheck --check-prefix=CHECK3 %s 10# CHECK3: Parsing input IR code from: {{.*}}/Inputs/argc_sub1_elf.ll 11# CHECK3: Running: main("2nd", "3rd", "4th") 12# CHECK3: Exit code: 3 13