diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bc23ccb9e38c8e75216a215a5ff445f31d9b5f14..f39f40f89ad1ce3f3d1637a6671c3fa52afd0757 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2006-01-19 Andrew Pinski <pinskia@physics.uc.edu> + + * objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c (switchfiles): + Fix fprintf's by adding srcdir or removing it. + 2006-01-19 Diego Novillo <dnovillo@redhat.com> * testsuite/gcc.dg/gomp/for-13.c: Use -fdump-tree-ompexp. diff --git a/gcc/testsuite/objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c b/gcc/testsuite/objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c index 31f328ee9a9917839d26e32159a51685ed78e2cf..4b5d5c6dae72afaa27500b9504d19ee76768c9fa 100644 --- a/gcc/testsuite/objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c +++ b/gcc/testsuite/objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c @@ -230,13 +230,13 @@ switchfiles (int fields) { fprintf (outfile, "\ /* { dg-do run { xfail *-*-* } } */\n\ -/* { dg-options \"-w -I%s -fgnu-runtime\" } */\n"); +/* { dg-options \"-w -I%s -fgnu-runtime\" } */\n", srcdir); } else { fprintf (outfile, "\ /* { dg-do run } */\n\ -/* { dg-options \"-w -I%s -fgnu-runtime\" } */\n"); +/* { dg-options \"-w -I%s -fgnu-runtime\" } */\n", srcdir); } fprintf(outfile, "#include <objc/encoding.h> \n\ #include \"struct-layout-1.h\"\n\ @@ -274,7 +274,7 @@ int main (void)\n\ abort ();\n\ }\n\ exit (0);\n\ -}\n", srcdir, filecnt, filecnt); +}\n", filecnt, filecnt); fclose (outfile); sprintf (destptr, "t%03d_test.h", filecnt); outfile = fopen (destbuf, "w");