1## This test checks the error message displayed if an incorrect
2## number of positional arguments is specified.
3
4# RUN: not llvm-dwarfutil - 2>&1 | FileCheck --check-prefix CHECK1 %s
5# RUN: not llvm-dwarfutil - - - 2>&1 | FileCheck --check-prefix CHECK3 %s
6
7# CHECK1: error: exactly two positional arguments expected, 1 provided
8# CHECK3: error: exactly two positional arguments expected, 3 provided
9