1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

[Orc][examples] Add missing FileCheck for lit test and polish output

This commit is contained in:
Stefan Gränitz 2021-04-07 11:11:27 +02:00
parent 4792a641c6
commit 9c76412adb
2 changed files with 9 additions and 7 deletions

View File

@ -243,7 +243,7 @@ int main(int argc, char *argv[]) {
outs() << "Running: main(";
int Pos = 0;
for (const std::string &Arg : InputArgv)
outs() << (Pos++ == 0 ? "" : ", ") << Arg;
outs() << (Pos++ == 0 ? "" : ", ") << "\"" << Arg << "\"";
outs() << ")\n";
// Execute the code in the remote target process and dump the result. With

View File

@ -1,10 +1,12 @@
# This test makes sure that the example builds and executes as expected.
# Instructions for debugging can be found in LLJITWithRemoteDebugging.cpp
# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll
# CHECK: Running: {{.*}}/Inputs/argc_sub1_elf.ll
# CHECK: Exit code: 0
# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll | FileCheck --check-prefix=CHECK1 %s
# CHECK1: Parsing input IR code from: {{.*}}/Inputs/argc_sub1_elf.ll
# CHECK1: Running: main()
# CHECK1: Exit code: 0
# RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1_elf.ll --args 2nd 3rd 4th
# CHECK: Running: {{.*}}/Inputs/argc_sub1_elf.ll 2nd 3rd 4th
# CHECK: Exit code: 3
# 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