brintos

brintos / llvm-project-archived public Read only

0
0
Text · 521 B · b7f29ab Raw
19 lines · c
1// The dbgeng driver doesn't support \DexCommandLine yet.2// UNSUPPORTED: system-windows3//4// RUN: %dexter_regression_test_c_build %s -o %t5// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s6// CHECK: command_line.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 17// Three args will be appended to the 'default' argument.18// DexCommandLine(['a', 'b', 'c'])19