diff options
Diffstat (limited to 'test/Driver/bounds-checking.c')
-rw-r--r-- | test/Driver/bounds-checking.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/test/Driver/bounds-checking.c b/test/Driver/bounds-checking.c index 95bb8af..a4f97e8 100644 --- a/test/Driver/bounds-checking.c +++ b/test/Driver/bounds-checking.c @@ -1,7 +1,11 @@ -// RUN: %clang -target x86_64-apple-darwin10 -fbounds-checking -### -fsyntax-only %s 2> %t -// RUN: FileCheck < %t %s -// RUN: %clang -target x86_64-apple-darwin10 -fbounds-checking=3 -### -fsyntax-only %s 2> %t -// RUN: FileCheck -check-prefix=CHECK2 < %t %s +// RUN: %clang -fsanitize=bounds -### -fsyntax-only %s 2> %t +// RUN: FileCheck -check-prefix=CHECK < %t %s +// CHECK: "-fsanitize=bounds" -// CHECK: "-fbounds-checking=1" -// CHECK2: "-fbounds-checking=3" +// RUN: %clang -fbounds-checking -### -fsyntax-only %s 2> %t +// RUN: FileCheck -check-prefix=CHECK-OLD < %t %s +// CHECK-OLD: "-fsanitize=bounds" + +// RUN: %clang -fbounds-checking=3 -### -fsyntax-only %s 2> %t +// RUN: FileCheck -check-prefix=CHECK-OLD2 < %t %s +// CHECK-OLD2: "-fsanitize=bounds" |