mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 18:56:06 +00:00

This overload should be used for better diagnostics when parsing configurations. Now a failure to parse will list the filename (or <command-line>) instead of just `YAML`. Reviewed By: MyDeveloperDay Differential Revision: https://reviews.llvm.org/D93633
12 lines
486 B
C++
12 lines
486 B
C++
// RUN: clang-format %s --Wno-error=unknown --style="{UnknownKey: true}" 2>&1 | FileCheck %s -check-prefix=CHECK
|
|
// RUN: not clang-format %s --style="{UnknownKey: true}" 2>&1 | FileCheck %s -check-prefix=CHECK-FAIL
|
|
|
|
// CHECK: <command-line>:1:2: warning: unknown key 'UnknownKey'
|
|
// CHECK-NEXT: {UnknownKey: true}
|
|
// CHECK-NEXT: ^~~~~~~~~~
|
|
// CHECK-FAIL: <command-line>:1:2: error: unknown key 'UnknownKey'
|
|
// CHECK-FAIL-NEXT: {UnknownKey: true}
|
|
// CHECK-FAIL-NEXT: ^~~~~~~~~~
|
|
|
|
int i ;
|