In gcc/c-family/: 2010-11-22 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / strings-2.mm
blob9b7023a974596113dfc3f2b5a828cca99ea42a2a
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010.  */
3 /* { dg-do run } */
4 /* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
5 /* { dg-options "-fconstant-string-class=MyTestString" } */
6 /* { dg-options "-mno-constant-cfstrings -fconstant-string-class=MyTestString" { target *-*-darwin* } } */
8 /* { dg-additional-sources "../objc-obj-c++-shared/Object1.mm" } */
10 #include "../objc-obj-c++-shared/Object1.h"
11 #include "../objc-obj-c++-shared/next-mapping.h"
13 #include <stdlib.h> /* For abort() */
15 @interface MyTestString : Object
17   char *string;
18   unsigned int len;
20 /* All strings should contain the C string 'test'.  Call -check to
21    test that this is true.  */
22 - (void) check;
23 @end
25 @implementation MyTestString
26 - (void) check
28   if (len != 4 || string[0] != 't' || string[1] != 'e'
29       || string[2] != 's' || string[3] != 't' || string[4] != '\0')
30     abort ();
32 @end
34 int main (void)
36   MyTestString *test_valid1 = @"test";
37   MyTestString *test_valid2 = @"te" @"st";
38   MyTestString *test_valid3 = @"te" @"s" @"t";
39   MyTestString *test_valid4 = @ "t" @ "e" @ "s" @ "t";
40   MyTestString *test_valid5 = @ "t" "e" "s" "t";
41   MyTestString *test_valid6 = @ "t" "e" "s" @ "t";
43   [test_valid1 check];
44   [test_valid2 check];
45   [test_valid3 check];
46   [test_valid4 check];
47   [test_valid5 check];
48   [test_valid6 check];
50   return 0;