Index: head/usr.bin/indent/tests/comments.0 =================================================================== --- head/usr.bin/indent/tests/comments.0 (nonexistent) +++ head/usr.bin/indent/tests/comments.0 (revision 313544) @@ -0,0 +1,25 @@ +/* $FreeBSD$ */ +/* See r303597, r303598, r309219, and r309343 */ +void t(void) { + /* + * Old indent wrapped the URL near where this sentence ends. + * + * https://www.freebsd.org/cgi/man.cgi?query=indent&apropos=0&sektion=0&manpath=FreeBSD+12-current&arch=default&format=html + */ + + /* + * Old indent did not wrap to column 78 + * + * aaaaaa bbbbbb cccccc dddddd eeeeee ffffff ggggg hhhhh iiiii jjjj kk + */ + + /* + * Old indent unnecessarily removed the star comment continuation on the next line. + * + * *test* + */ + + /* r309219 Go through linked list, freeing from the malloced (t[-1]) address. */ + + /* r309343 */ +} Property changes on: head/usr.bin/indent/tests/comments.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/comments.0.stdout =================================================================== --- head/usr.bin/indent/tests/comments.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/comments.0.stdout (revision 313544) @@ -0,0 +1,32 @@ +/* $FreeBSD$ */ +/* See r303597, r303598, r309219, and r309343 */ +void +t(void) +{ + /* + * Old indent wrapped the URL near where this sentence ends. + * + * https://www.freebsd.org/cgi/man.cgi?query=indent&apropos=0&sektion=0&manpath=FreeBSD+12-current&arch=default&format=html + */ + + /* + * Old indent did not wrap to column 78 + * + * aaaaaa bbbbbb cccccc dddddd eeeeee ffffff ggggg hhhhh iiiii jjjj + * kk + */ + + /* + * Old indent unnecessarily removed the star comment continuation on + * the next line. + * + * *test* + */ + + /* + * r309219 Go through linked list, freeing from the malloced (t[-1]) + * address. + */ + + /* r309343 */ +} Property changes on: head/usr.bin/indent/tests/comments.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/declarations.0 =================================================================== --- head/usr.bin/indent/tests/declarations.0 (nonexistent) +++ head/usr.bin/indent/tests/declarations.0 (revision 313544) @@ -0,0 +1,21 @@ +/* $FreeBSD$ */ +/* See r303570 */ +void t(void) { + int a, + b, + c; + int + *d, + *e, + *f; + int (*g)(), + (*h)(), + (*i)(); + int j, + k, + l; + int m + ,n + ,o + ; +} Property changes on: head/usr.bin/indent/tests/declarations.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/declarations.0.stdout =================================================================== --- head/usr.bin/indent/tests/declarations.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/declarations.0.stdout (revision 313544) @@ -0,0 +1,15 @@ +/* $FreeBSD$ */ +/* See r303570 */ +void +t(void) +{ + int a, b, c; + int + *d, *e, *f; + int (*g) (), (*h) (), (*i) (); + int j, k, l; + int m + ,n + ,o + ; +} Property changes on: head/usr.bin/indent/tests/declarations.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/elsecomment.0 =================================================================== --- head/usr.bin/indent/tests/elsecomment.0 (nonexistent) +++ head/usr.bin/indent/tests/elsecomment.0 (revision 313544) @@ -0,0 +1,18 @@ +/* $FreeBSD$ */ +/* See r303484 and r309342 */ +void t(void) { + if (0) { + + } /* Old indent would remove the following blank line */ + + /* + * test + */ + + if (1) + ; + else /* Old indent would get very confused here */ + { + + } +} Property changes on: head/usr.bin/indent/tests/elsecomment.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/elsecomment.0.stdout =================================================================== --- head/usr.bin/indent/tests/elsecomment.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/elsecomment.0.stdout (revision 313544) @@ -0,0 +1,22 @@ +/* $FreeBSD$ */ +/* See r303484 and r309342 */ +void +t(void) +{ + if (0) + { + + } /* Old indent would remove the following + * blank line */ + + /* + * test + */ + + if (1) + ; + else /* Old indent would get very confused here */ + { + + } +} Property changes on: head/usr.bin/indent/tests/elsecomment.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/elsecomment.pro =================================================================== --- head/usr.bin/indent/tests/elsecomment.pro (nonexistent) +++ head/usr.bin/indent/tests/elsecomment.pro (revision 313544) @@ -0,0 +1,2 @@ +/* $FreeBSD$ */ +-bl Property changes on: head/usr.bin/indent/tests/elsecomment.pro ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/float.0 =================================================================== --- head/usr.bin/indent/tests/float.0 (nonexistent) +++ head/usr.bin/indent/tests/float.0 (revision 313544) @@ -0,0 +1,6 @@ +/* $FreeBSD$ */ +/* See r303499 */ +void t(void) { + unsigned long x = 314UL; + float y = 3.14f; +} Property changes on: head/usr.bin/indent/tests/float.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/float.0.stdout =================================================================== --- head/usr.bin/indent/tests/float.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/float.0.stdout (revision 313544) @@ -0,0 +1,8 @@ +/* $FreeBSD$ */ +/* See r303499 */ +void +t(void) +{ + unsigned long x = 314UL; + float y = 3.14f; +} Property changes on: head/usr.bin/indent/tests/float.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/label.0 =================================================================== --- head/usr.bin/indent/tests/label.0 (nonexistent) +++ head/usr.bin/indent/tests/label.0 (revision 313544) @@ -0,0 +1,13 @@ +/* $FreeBSD$ */ +/* See r303489 */ +void t(void) { + switch (1) + { + case 1: /* test */ + case 2: /* test */ + } +CLEANUP: + ; +V: ; +U: ; +} Property changes on: head/usr.bin/indent/tests/label.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/label.0.stdout =================================================================== --- head/usr.bin/indent/tests/label.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/label.0.stdout (revision 313544) @@ -0,0 +1,14 @@ +/* $FreeBSD$ */ +/* See r303489 */ +void +t(void) +{ + switch (1) { + case 1: /* test */ + case 2: /* test */ + } +CLEANUP: + ; +V: ; +U: ; +} Property changes on: head/usr.bin/indent/tests/label.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/label.pro =================================================================== --- head/usr.bin/indent/tests/label.pro (nonexistent) +++ head/usr.bin/indent/tests/label.pro (revision 313544) @@ -0,0 +1,2 @@ +/* $FreeBSD$ */ +-nut Property changes on: head/usr.bin/indent/tests/label.pro ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/list_head.0 =================================================================== --- head/usr.bin/indent/tests/list_head.0 (nonexistent) +++ head/usr.bin/indent/tests/list_head.0 (revision 313544) @@ -0,0 +1,16 @@ +/* $FreeBSD$ */ +/* See r309380 */ +static int +do_execve(td, args, mac_p) + struct thread *td; + struct image_args *args; + struct mac *mac_p; +{ + +} + +static LIST_HEAD(, alq) ald_active; +static int ald_shuttingdown = 0; +struct thread *ald_thread; + + Property changes on: head/usr.bin/indent/tests/list_head.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/list_head.0.stdout =================================================================== --- head/usr.bin/indent/tests/list_head.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/list_head.0.stdout (revision 313544) @@ -0,0 +1,14 @@ +/* $FreeBSD$ */ +/* See r309380 */ +static int +do_execve(td, args, mac_p) + struct thread *td; + struct image_args *args; + struct mac *mac_p; +{ + +} + +static LIST_HEAD(, alq) ald_active; +static int ald_shuttingdown = 0; +struct thread *ald_thread; Property changes on: head/usr.bin/indent/tests/list_head.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/nsac.0 =================================================================== --- head/usr.bin/indent/tests/nsac.0 (nonexistent) +++ head/usr.bin/indent/tests/nsac.0 (revision 313544) @@ -0,0 +1,4 @@ +/* $FreeBSD$ */ +void t(void) { + int a = (double) 8; +} Property changes on: head/usr.bin/indent/tests/nsac.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/nsac.0.stdout =================================================================== --- head/usr.bin/indent/tests/nsac.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/nsac.0.stdout (revision 313544) @@ -0,0 +1,6 @@ +/* $FreeBSD$ */ +void +t(void) +{ + int a = (double)8; +} Property changes on: head/usr.bin/indent/tests/nsac.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/nsac.pro =================================================================== --- head/usr.bin/indent/tests/nsac.pro (nonexistent) +++ head/usr.bin/indent/tests/nsac.pro (revision 313544) @@ -0,0 +1,2 @@ +/* $FreeBSD$ */ +-nsac Property changes on: head/usr.bin/indent/tests/nsac.pro ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/offsetof.0 =================================================================== --- head/usr.bin/indent/tests/offsetof.0 (nonexistent) +++ head/usr.bin/indent/tests/offsetof.0 (revision 313544) @@ -0,0 +1,5 @@ +/* $FreeBSD$ */ +/* See r303718 */ +void t(void) { + int n = malloc(offsetof(struct s, f) + 1); +} Property changes on: head/usr.bin/indent/tests/offsetof.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/offsetof.0.stdout =================================================================== --- head/usr.bin/indent/tests/offsetof.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/offsetof.0.stdout (revision 313544) @@ -0,0 +1,7 @@ +/* $FreeBSD$ */ +/* See r303718 */ +void +t(void) +{ + int n = malloc(offsetof(struct s, f) + 1); +} Property changes on: head/usr.bin/indent/tests/offsetof.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/sac.0 =================================================================== --- head/usr.bin/indent/tests/sac.0 (nonexistent) +++ head/usr.bin/indent/tests/sac.0 (revision 313544) @@ -0,0 +1,4 @@ +/* $FreeBSD$ */ +void t(void) { + int a = (double) 8; +} Property changes on: head/usr.bin/indent/tests/sac.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/sac.0.stdout =================================================================== --- head/usr.bin/indent/tests/sac.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/sac.0.stdout (revision 313544) @@ -0,0 +1,6 @@ +/* $FreeBSD$ */ +void +t(void) +{ + int a = (double) 8; +} Property changes on: head/usr.bin/indent/tests/sac.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/sac.pro =================================================================== --- head/usr.bin/indent/tests/sac.pro (nonexistent) +++ head/usr.bin/indent/tests/sac.pro (revision 313544) @@ -0,0 +1,2 @@ +/* $FreeBSD$ */ +-sac Property changes on: head/usr.bin/indent/tests/sac.pro ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/struct.0 =================================================================== --- head/usr.bin/indent/tests/struct.0 (nonexistent) +++ head/usr.bin/indent/tests/struct.0 (revision 313544) @@ -0,0 +1,13 @@ +/* $FreeBSD$ */ +/* See r303485 */ +void +t(void) +{ + static const struct { + int a; + int b; + } c[] = { + { D, E }, + { F, G } + }; +} Property changes on: head/usr.bin/indent/tests/struct.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/struct.0.stdout =================================================================== --- head/usr.bin/indent/tests/struct.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/struct.0.stdout (revision 313544) @@ -0,0 +1,13 @@ +/* $FreeBSD$ */ +/* See r303485 */ +void +t(void) +{ + static const struct { + int a; + int b; + } c[] = { + {D, E}, + {F, G} + }; +} Property changes on: head/usr.bin/indent/tests/struct.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/surplusbad.0 =================================================================== --- head/usr.bin/indent/tests/surplusbad.0 (nonexistent) +++ head/usr.bin/indent/tests/surplusbad.0 (revision 313544) @@ -0,0 +1,9 @@ +/* $FreeBSD$ */ +/* See r303599 */ +#if defined(__i386__) +int a; +#elif defined(__amd64__) +int b; +#else +#error "Port me" +#endif Property changes on: head/usr.bin/indent/tests/surplusbad.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/surplusbad.0.stdout =================================================================== --- head/usr.bin/indent/tests/surplusbad.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/surplusbad.0.stdout (revision 313544) @@ -0,0 +1,9 @@ +/* $FreeBSD$ */ +/* See r303599 */ +#if defined(__i386__) +int a; +#elif defined(__amd64__) +int b; +#else +#error "Port me" +#endif Property changes on: head/usr.bin/indent/tests/surplusbad.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/surplusbad.pro =================================================================== --- head/usr.bin/indent/tests/surplusbad.pro (nonexistent) +++ head/usr.bin/indent/tests/surplusbad.pro (revision 313544) @@ -0,0 +1,2 @@ +/* $FreeBSD$ */ +-bad Property changes on: head/usr.bin/indent/tests/surplusbad.pro ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/types_from_file.0 =================================================================== --- head/usr.bin/indent/tests/types_from_file.0 (nonexistent) +++ head/usr.bin/indent/tests/types_from_file.0 (revision 313544) @@ -0,0 +1,3 @@ +/* $FreeBSD$ */ +/* See r303735 */ +void t(a *x, b *y, c *z); Property changes on: head/usr.bin/indent/tests/types_from_file.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/types_from_file.0.stdout =================================================================== --- head/usr.bin/indent/tests/types_from_file.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/types_from_file.0.stdout (revision 313544) @@ -0,0 +1,3 @@ +/* $FreeBSD$ */ +/* See r303735 */ +void t(a *x, b *y, c * z); Property changes on: head/usr.bin/indent/tests/types_from_file.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/types_from_file.list =================================================================== --- head/usr.bin/indent/tests/types_from_file.list (nonexistent) +++ head/usr.bin/indent/tests/types_from_file.list (revision 313544) @@ -0,0 +1,2 @@ +b +a \ No newline at end of file Property changes on: head/usr.bin/indent/tests/types_from_file.list ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/types_from_file.pro =================================================================== --- head/usr.bin/indent/tests/types_from_file.pro (nonexistent) +++ head/usr.bin/indent/tests/types_from_file.pro (revision 313544) @@ -0,0 +1,2 @@ +/* $FreeBSD$ */ +-Utypes_from_file.list Property changes on: head/usr.bin/indent/tests/types_from_file.pro ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/wchar.0 =================================================================== --- head/usr.bin/indent/tests/wchar.0 (nonexistent) +++ head/usr.bin/indent/tests/wchar.0 (revision 313544) @@ -0,0 +1,6 @@ +/* $FreeBSD$ */ +/* See r309220 */ +#include + +wchar_t *x = L"test"; +wchar_t y = L't'; Property changes on: head/usr.bin/indent/tests/wchar.0 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/usr.bin/indent/tests/wchar.0.stdout =================================================================== --- head/usr.bin/indent/tests/wchar.0.stdout (nonexistent) +++ head/usr.bin/indent/tests/wchar.0.stdout (revision 313544) @@ -0,0 +1,6 @@ +/* $FreeBSD$ */ +/* See r309220 */ +#include + +wchar_t *x = L"test"; +wchar_t y = L't'; Property changes on: head/usr.bin/indent/tests/wchar.0.stdout ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property