*** empty log message ***

From-SVN: r37101
This commit is contained in:
Neil Booth 2000-10-28 18:10:41 +00:00
parent e7f7ca12e2
commit 66cb3475e4
1 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,10 @@ extern void abort (void);
#define xstr(x) str(x)
#define strvar(...) #__VA_ARGS__
#define glibc_str(x) glibc_str2 (w, x)
#define glibc_str2(w, x) #x
#define ver GLIBC_2.2
int main (int argc, char *argv[])
{
str (\); /* { dg-warning "valid string" "str(\\)" } */
@ -45,5 +49,8 @@ int main (int argc, char *argv[])
if (strcmp (strvar (foo, bar), "foo, bar"))
err ("variable arguments");
if (strcmp (glibc_str (ver), "GLIBC_2.2"))
err ("whitespace");
return 0;
}