From: Douglas Yung Date: Sat, 3 Nov 2018 08:51:27 +0000 (+0000) Subject: Fix test on Windows. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6974b990e13dfb4190a6dffdcc8bac9edbd1cde5;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@346070 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/analyzer-list-configs.c b/test/Analysis/analyzer-list-configs.c index 51de51e285..c9f6e55167 100644 --- a/test/Analysis/analyzer-list-configs.c +++ b/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: B + m becomes A - B m - n, where // CHECK: A and B symbolic, n and m are integers. // CHECK: is any of '==', '!=', '<', '<=', '>',