9 lines · plain
1## This test checks the error message displayed if an incorrect2## number of positional arguments is specified.3 4# RUN: not llvm-dwarfutil - 2>&1 | FileCheck --check-prefix CHECK1 %s5# RUN: not llvm-dwarfutil - - - 2>&1 | FileCheck --check-prefix CHECK3 %s6 7# CHECK1: error: exactly two positional arguments expected, 1 provided8# CHECK3: error: exactly two positional arguments expected, 3 provided9