diff options
author | Douglas Yung <douglas.yung@sony.com> | 2018-11-03 08:51:27 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2018-11-03 08:51:27 +0000 |
commit | ddcb0e4498e61dc6b5151f5c137e0857148a3d4f (patch) | |
tree | 19b642ab24e130038feb165805f0d6e82cf942fa | |
parent | 302c64353122d7251c10640e10623c0d8bc38422 (diff) | |
download | bcm5719-llvm-ddcb0e4498e61dc6b5151f5c137e0857148a3d4f.tar.gz bcm5719-llvm-ddcb0e4498e61dc6b5151f5c137e0857148a3d4f.zip |
Fix test on Windows.
This test checks the entire output of a help option, the problem
is that on Windows, the line break occurs in a different place
causing the CHECK to fail because it is not expecting a line break.
llvm-svn: 346070
-rw-r--r-- | clang/test/Analysis/analyzer-list-configs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/Analysis/analyzer-list-configs.c b/clang/test/Analysis/analyzer-list-configs.c index 51de51e285c..c9f6e55167f 100644 --- a/clang/test/Analysis/analyzer-list-configs.c +++ b/clang/test/Analysis/analyzer-list-configs.c @@ -23,7 +23,8 @@ // CHECK: integers are signed, greater than or equal // CHECK: to the quarter of the minimum value of the // CHECK: type and less than or equal to the quarter -// CHECK: of the maximum value of that type. A + n +// CHECK: of the maximum value of that type. A +// CHECK: + n // CHECK: <OP> B + m becomes A - B <OP> m - n, where // CHECK: A and B symbolic, n and m are integers. // CHECK: <OP> is any of '==', '!=', '<', '<=', '>', |