]> granicus.if.org Git - clang/commitdiff
Fix a test that hasn't worked since 2007
authorAlp Toker <alp@nuanti.com>
Sun, 8 Dec 2013 18:49:05 +0000 (18:49 +0000)
committerAlp Toker <alp@nuanti.com>
Sun, 8 Dec 2013 18:49:05 +0000 (18:49 +0000)
Due to a missing -verify, 2007-10-01-BuildArrayRef.c was a no-op.

The message was changed 5 years ago so also update the test to reflect the new wording.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196729 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/2007-10-01-BuildArrayRef.c

index 4692731b5c2595398069cc0b61ef70f5361c42cf..2552934f64852d40af7e418a77376780de97981c 100644 (file)
@@ -1,9 +1,9 @@
-// RUN: not %clang_cc1_only -c %s -o - > /dev/null
+// RUN: %clang_cc1 -fsyntax-only -verify %s
 // PR 1603
 void func()
 {
    const int *arr;
-   arr[0] = 1;  // expected-error {{assignment of read-only location}}
+   arr[0] = 1;  // expected-error {{read-only variable is not assignable}}
 }
 
 struct foo {
@@ -15,6 +15,6 @@ int func2()
 {
   const struct foo *fp;
   fp = &sfoo;
-  fp[0].bar = 1;  // expected-error {{ assignment of read-only member}}
+  fp[0].bar = 1;  // expected-error {{read-only variable is not assignable}}
   return sfoo.bar;
 }