brintos

brintos / llvm-project-archived public Read only

0
0
Text · 530 B · d8a253e Raw
17 lines · c
1// The dbgeng driver doesn't support --target-run-args yet.2// UNSUPPORTED: system-windows3//4// RUN: %dexter_regression_test_c_build %s -o %t5// RUN: %dexter_regression_test_run --binary %t --target-run-args "a b 'c d'" -- %s | FileCheck %s6// CHECK: target_run_args.c:7 8int main(int argc, const char **argv) {9  if (argc == 4)10    return 0; // DexLabel('retline')11 12  return 1; // DexUnreachable()13}14 15// DexExpectWatchValue('argc', '4', on_line=ref('retline'))16// DexExpectWatchValue('argv[1][0]', "'a'", on_line=ref('retline'))17