Module Name:    src
Committed By:   rillig
Date:           Fri Mar 12 00:13:06 UTC 2021

Modified Files:
        src/distrib/sets/lists/tests: mi
        src/tests/usr.bin/indent: Makefile
Added Files:
        src/tests/usr.bin/indent: token-binary_op.0 token-binary_op.0.pro
            token-binary_op.0.stdout token-case_label.0 token-case_label.0.pro
            token-case_label.0.stdout token-colon.0 token-colon.0.pro
            token-colon.0.stdout token-comma.0 token-comma.0.pro
            token-comma.0.stdout token-comment.0 token-comment.0.pro
            token-comment.0.stdout token-decl.0 token-decl.0.pro
            token-decl.0.stdout token-do_stmt.0 token-do_stmt.0.pro
            token-do_stmt.0.stdout token-end_of_file.0 token-end_of_file.0.pro
            token-end_of_file.0.stdout token-for_exprs.0 token-for_exprs.0.pro
            token-for_exprs.0.stdout token-form_feed.0 token-form_feed.0.pro
            token-form_feed.0.stdout token-funcname.0 token-funcname.0.pro
            token-funcname.0.stdout token-ident.0 token-ident.0.pro
            token-ident.0.stdout token-if_expr.0 token-if_expr.0.pro
            token-if_expr.0.stdout token-if_expr_stmt.0
            token-if_expr_stmt.0.pro token-if_expr_stmt.0.stdout
            token-if_expr_stmt_else.0 token-if_expr_stmt_else.0.pro
            token-if_expr_stmt_else.0.stdout token-keyword_do.0
            token-keyword_do.0.pro token-keyword_do.0.stdout
            token-keyword_do_else.0 token-keyword_do_else.0.pro
            token-keyword_do_else.0.stdout token-keyword_else.0
            token-keyword_else.0.pro token-keyword_else.0.stdout
            token-keyword_for_if_while.0 token-keyword_for_if_while.0.pro
            token-keyword_for_if_while.0.stdout
            token-keyword_struct_union_enum.0
            token-keyword_struct_union_enum.0.pro
            token-keyword_struct_union_enum.0.stdout token-lbrace.0
            token-lbrace.0.pro token-lbrace.0.stdout token-lparen.0
            token-lparen.0.pro token-lparen.0.stdout token-newline.0
            token-newline.0.pro token-newline.0.stdout token-period.0
            token-period.0.pro token-period.0.stdout token-postfix_op.0
            token-postfix_op.0.pro token-postfix_op.0.stdout
            token-preprocessing.0 token-preprocessing.0.pro
            token-preprocessing.0.stdout token-question.0 token-question.0.pro
            token-question.0.stdout token-rbrace.0 token-rbrace.0.pro
            token-rbrace.0.stdout token-rparen.0 token-rparen.0.pro
            token-rparen.0.stdout token-semicolon.0 token-semicolon.0.pro
            token-semicolon.0.stdout token-stmt.0 token-stmt.0.pro
            token-stmt.0.stdout token-stmt_list.0 token-stmt_list.0.pro
            token-stmt_list.0.stdout token-storage_class.0
            token-storage_class.0.pro token-storage_class.0.stdout
            token-string_prefix.0 token-string_prefix.0.pro
            token-string_prefix.0.stdout token-switch_expr.0
            token-switch_expr.0.pro token-switch_expr.0.stdout token-type_def.0
            token-type_def.0.pro token-type_def.0.stdout token-unary_op.0
            token-unary_op.0.pro token-unary_op.0.stdout token-while_expr.0
            token-while_expr.0.pro token-while_expr.0.stdout

Log Message:
tests/indent: add test templates for testing specific parser symbols

The basic idea of indent is to split the input into tokens and then
reassemble them, reformatting them on the way.  These tokens determine
how the output is formatted, therefore add tests for each of the
terminal tokens and nonterminal parser symbols, to cover more common
cases, and edge cases as well.


To generate a diff of this commit:
cvs rdiff -u -r1.1030 -r1.1031 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.7 -r1.8 src/tests/usr.bin/indent/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/usr.bin/indent/token-binary_op.0 \
    src/tests/usr.bin/indent/token-binary_op.0.pro \
    src/tests/usr.bin/indent/token-binary_op.0.stdout \
    src/tests/usr.bin/indent/token-case_label.0 \
    src/tests/usr.bin/indent/token-case_label.0.pro \
    src/tests/usr.bin/indent/token-case_label.0.stdout \
    src/tests/usr.bin/indent/token-colon.0 \
    src/tests/usr.bin/indent/token-colon.0.pro \
    src/tests/usr.bin/indent/token-colon.0.stdout \
    src/tests/usr.bin/indent/token-comma.0 \
    src/tests/usr.bin/indent/token-comma.0.pro \
    src/tests/usr.bin/indent/token-comma.0.stdout \
    src/tests/usr.bin/indent/token-comment.0 \
    src/tests/usr.bin/indent/token-comment.0.pro \
    src/tests/usr.bin/indent/token-comment.0.stdout \
    src/tests/usr.bin/indent/token-decl.0 \
    src/tests/usr.bin/indent/token-decl.0.pro \
    src/tests/usr.bin/indent/token-decl.0.stdout \
    src/tests/usr.bin/indent/token-do_stmt.0 \
    src/tests/usr.bin/indent/token-do_stmt.0.pro \
    src/tests/usr.bin/indent/token-do_stmt.0.stdout \
    src/tests/usr.bin/indent/token-end_of_file.0 \
    src/tests/usr.bin/indent/token-end_of_file.0.pro \
    src/tests/usr.bin/indent/token-end_of_file.0.stdout \
    src/tests/usr.bin/indent/token-for_exprs.0 \
    src/tests/usr.bin/indent/token-for_exprs.0.pro \
    src/tests/usr.bin/indent/token-for_exprs.0.stdout \
    src/tests/usr.bin/indent/token-form_feed.0 \
    src/tests/usr.bin/indent/token-form_feed.0.pro \
    src/tests/usr.bin/indent/token-form_feed.0.stdout \
    src/tests/usr.bin/indent/token-funcname.0 \
    src/tests/usr.bin/indent/token-funcname.0.pro \
    src/tests/usr.bin/indent/token-funcname.0.stdout \
    src/tests/usr.bin/indent/token-ident.0 \
    src/tests/usr.bin/indent/token-ident.0.pro \
    src/tests/usr.bin/indent/token-ident.0.stdout \
    src/tests/usr.bin/indent/token-if_expr.0 \
    src/tests/usr.bin/indent/token-if_expr.0.pro \
    src/tests/usr.bin/indent/token-if_expr.0.stdout \
    src/tests/usr.bin/indent/token-if_expr_stmt.0 \
    src/tests/usr.bin/indent/token-if_expr_stmt.0.pro \
    src/tests/usr.bin/indent/token-if_expr_stmt.0.stdout \
    src/tests/usr.bin/indent/token-if_expr_stmt_else.0 \
    src/tests/usr.bin/indent/token-if_expr_stmt_else.0.pro \
    src/tests/usr.bin/indent/token-if_expr_stmt_else.0.stdout \
    src/tests/usr.bin/indent/token-keyword_do.0 \
    src/tests/usr.bin/indent/token-keyword_do.0.pro \
    src/tests/usr.bin/indent/token-keyword_do.0.stdout \
    src/tests/usr.bin/indent/token-keyword_do_else.0 \
    src/tests/usr.bin/indent/token-keyword_do_else.0.pro \
    src/tests/usr.bin/indent/token-keyword_do_else.0.stdout \
    src/tests/usr.bin/indent/token-keyword_else.0 \
    src/tests/usr.bin/indent/token-keyword_else.0.pro \
    src/tests/usr.bin/indent/token-keyword_else.0.stdout \
    src/tests/usr.bin/indent/token-keyword_for_if_while.0 \
    src/tests/usr.bin/indent/token-keyword_for_if_while.0.pro \
    src/tests/usr.bin/indent/token-keyword_for_if_while.0.stdout \
    src/tests/usr.bin/indent/token-keyword_struct_union_enum.0 \
    src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.pro \
    src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.stdout \
    src/tests/usr.bin/indent/token-lbrace.0 \
    src/tests/usr.bin/indent/token-lbrace.0.pro \
    src/tests/usr.bin/indent/token-lbrace.0.stdout \
    src/tests/usr.bin/indent/token-lparen.0 \
    src/tests/usr.bin/indent/token-lparen.0.pro \
    src/tests/usr.bin/indent/token-lparen.0.stdout \
    src/tests/usr.bin/indent/token-newline.0 \
    src/tests/usr.bin/indent/token-newline.0.pro \
    src/tests/usr.bin/indent/token-newline.0.stdout \
    src/tests/usr.bin/indent/token-period.0 \
    src/tests/usr.bin/indent/token-period.0.pro \
    src/tests/usr.bin/indent/token-period.0.stdout \
    src/tests/usr.bin/indent/token-postfix_op.0 \
    src/tests/usr.bin/indent/token-postfix_op.0.pro \
    src/tests/usr.bin/indent/token-postfix_op.0.stdout \
    src/tests/usr.bin/indent/token-preprocessing.0 \
    src/tests/usr.bin/indent/token-preprocessing.0.pro \
    src/tests/usr.bin/indent/token-preprocessing.0.stdout \
    src/tests/usr.bin/indent/token-question.0 \
    src/tests/usr.bin/indent/token-question.0.pro \
    src/tests/usr.bin/indent/token-question.0.stdout \
    src/tests/usr.bin/indent/token-rbrace.0 \
    src/tests/usr.bin/indent/token-rbrace.0.pro \
    src/tests/usr.bin/indent/token-rbrace.0.stdout \
    src/tests/usr.bin/indent/token-rparen.0 \
    src/tests/usr.bin/indent/token-rparen.0.pro \
    src/tests/usr.bin/indent/token-rparen.0.stdout \
    src/tests/usr.bin/indent/token-semicolon.0 \
    src/tests/usr.bin/indent/token-semicolon.0.pro \
    src/tests/usr.bin/indent/token-semicolon.0.stdout \
    src/tests/usr.bin/indent/token-stmt.0 \
    src/tests/usr.bin/indent/token-stmt.0.pro \
    src/tests/usr.bin/indent/token-stmt.0.stdout \
    src/tests/usr.bin/indent/token-stmt_list.0 \
    src/tests/usr.bin/indent/token-stmt_list.0.pro \
    src/tests/usr.bin/indent/token-stmt_list.0.stdout \
    src/tests/usr.bin/indent/token-storage_class.0 \
    src/tests/usr.bin/indent/token-storage_class.0.pro \
    src/tests/usr.bin/indent/token-storage_class.0.stdout \
    src/tests/usr.bin/indent/token-string_prefix.0 \
    src/tests/usr.bin/indent/token-string_prefix.0.pro \
    src/tests/usr.bin/indent/token-string_prefix.0.stdout \
    src/tests/usr.bin/indent/token-switch_expr.0 \
    src/tests/usr.bin/indent/token-switch_expr.0.pro \
    src/tests/usr.bin/indent/token-switch_expr.0.stdout \
    src/tests/usr.bin/indent/token-type_def.0 \
    src/tests/usr.bin/indent/token-type_def.0.pro \
    src/tests/usr.bin/indent/token-type_def.0.stdout \
    src/tests/usr.bin/indent/token-unary_op.0 \
    src/tests/usr.bin/indent/token-unary_op.0.pro \
    src/tests/usr.bin/indent/token-unary_op.0.stdout \
    src/tests/usr.bin/indent/token-while_expr.0 \
    src/tests/usr.bin/indent/token-while_expr.0.pro \
    src/tests/usr.bin/indent/token-while_expr.0.stdout

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/tests/mi
diff -u src/distrib/sets/lists/tests/mi:1.1030 src/distrib/sets/lists/tests/mi:1.1031
--- src/distrib/sets/lists/tests/mi:1.1030	Tue Mar  9 20:43:19 2021
+++ src/distrib/sets/lists/tests/mi	Fri Mar 12 00:13:06 2021
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1030 2021/03/09 20:43:19 rillig Exp $
+# $NetBSD: mi,v 1.1031 2021/03/12 00:13:06 rillig Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -4704,274 +4704,388 @@
 ./usr/tests/usr.bin/id/t_id				tests-usr.bin-tests	compattestfile,atf
 ./usr/tests/usr.bin/id/t_whoami				tests-usr.bin-tests	compattestfile,atf
 ./usr/tests/usr.bin/indent				tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/Atffile			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/Kyuafile			tests-usr.bin-tests	compattestfile,atf,kyua
-./usr/tests/usr.bin/indent/binary.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/binary.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/block.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/block.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/comment-line-end.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/comment-line-end.0.stdout	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/comments.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/comments.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/comments.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/cs.0				tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/cs.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/cs.0.stdout			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/declarations.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/declarations.0.stdout	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/elsecomment.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/elsecomment.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/elsecomment.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/f_decls.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/f_decls.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/float.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/float.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/indent_variables.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/indent_variables.0.pro	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/indent_variables.0.stdout	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/label.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/label.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/label.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/lineno.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/lineno.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/lineno.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/list_head.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/list_head.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/ncs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/ncs.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/ncs.0.stdout			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/offsetof.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/offsetof.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt--version.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt--version.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt--version.0.stdout	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-P.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-P.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-P.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-T.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-T.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-T.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-U.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-U.0.list			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-U.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-U.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bacc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bacc.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bacc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bad.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bad.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bad.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-badp.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-badp.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-badp.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bap+sob.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bap+sob.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bap+sob.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bap.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bap.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bap.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bbb.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bbb.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bbb.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bc.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bl.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bl.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bl.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-br.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-br.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-br.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bs.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-bs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-c.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-c.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-c.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cd.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cd.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cd.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cdb.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cdb.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cdb.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ce.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ce.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ce.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ci.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ci.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ci.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cli.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cli.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cli.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cs.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-cs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-d.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-d.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-d.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-di.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-di.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-di.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-dj.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-dj.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-dj.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-eei.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-eei.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-eei.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ei.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ei.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ei.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fbs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fbs.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fbs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fc1.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fc1.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fc1.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fcb.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fcb.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-fcb.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-i.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-i.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-i.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ip.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ip.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ip.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-l.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-l.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-l.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lc.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ldi.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ldi.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ldi.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lp.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lp.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lp.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lpl.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lpl.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-lpl.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbacc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbacc.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbacc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbad.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbad.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbad.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbadp.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbadp.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbadp.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbap.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbap.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbap.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbbb.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbbb.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbbb.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbc.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbs.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nbs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ncdb.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ncdb.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ncdb.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nce.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nce.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nce.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ncs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ncs.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ncs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ndj.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ndj.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ndj.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-neei.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-neei.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-neei.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nei.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nei.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nei.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfbs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfbs.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfbs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfc1.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfc1.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfc1.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfcb.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfcb.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nfcb.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nip.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nip.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nip.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nlp.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nlp.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nlp.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nlpl.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nlpl.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nlpl.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npcs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npcs.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npcs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npro.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npro.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npro.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npsl.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npsl.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-npsl.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nsc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nsc.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nsc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nsob.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nsob.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nsob.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nut.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nut.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nut.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nv.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nv.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-nv.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-pcs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-pcs.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-pcs.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-psl.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-psl.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-psl.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-sc.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-sc.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-sc.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-sob.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-sob.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-sob.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ta.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ta.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ta.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ts.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ts.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ts.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ut.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ut.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-ut.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-v.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-v.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/opt-v.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/parens.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/parens.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/parens.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/pcs.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/pcs.0.pro			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/pcs.0.stdout			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/struct.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/struct.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/surplusbad.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/surplusbad.0.pro		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/surplusbad.0.stdout		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/t_indent			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/types_from_file.0		tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/types_from_file.0.list	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/types_from_file.0.pro	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/types_from_file.0.stdout	tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/wchar.0			tests-usr.bin-tests	compattestfile,atf
-./usr/tests/usr.bin/indent/wchar.0.stdout		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/Atffile					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/Kyuafile					tests-usr.bin-tests	compattestfile,atf,kyua
+./usr/tests/usr.bin/indent/binary.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/binary.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/block.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/block.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/comment-line-end.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/comment-line-end.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/comments.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/comments.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/comments.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/cs.0						tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/cs.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/cs.0.stdout					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/declarations.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/declarations.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/elsecomment.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/elsecomment.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/elsecomment.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/f_decls.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/f_decls.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/float.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/float.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/indent_variables.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/indent_variables.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/indent_variables.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/label.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/label.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/label.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/lineno.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/lineno.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/lineno.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/list_head.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/list_head.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/ncs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/ncs.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/ncs.0.stdout					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/offsetof.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/offsetof.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt--version.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt--version.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt--version.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-P.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-P.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-P.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-T.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-T.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-T.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-U.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-U.0.list					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-U.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-U.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bacc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bacc.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bacc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bad.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bad.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bad.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-badp.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-badp.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-badp.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bap+sob.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bap+sob.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bap+sob.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bap.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bap.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bap.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bbb.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bbb.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bbb.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bc.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bl.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bl.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bl.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-br.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-br.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-br.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bs.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-bs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-c.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-c.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-c.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cd.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cd.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cd.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cdb.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cdb.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cdb.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ce.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ce.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ce.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ci.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ci.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ci.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cli.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cli.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cli.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cs.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-cs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-d.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-d.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-d.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-di.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-di.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-di.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-dj.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-dj.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-dj.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-eei.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-eei.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-eei.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ei.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ei.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ei.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fbs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fbs.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fbs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fc1.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fc1.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fc1.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fcb.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fcb.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-fcb.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-i.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-i.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-i.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ip.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ip.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ip.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-l.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-l.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-l.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lc.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ldi.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ldi.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ldi.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lp.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lp.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lp.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lpl.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lpl.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-lpl.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbacc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbacc.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbacc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbad.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbad.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbad.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbadp.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbadp.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbadp.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbap.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbap.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbap.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbbb.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbbb.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbbb.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbc.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbs.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nbs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ncdb.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ncdb.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ncdb.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nce.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nce.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nce.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ncs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ncs.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ncs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ndj.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ndj.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ndj.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-neei.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-neei.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-neei.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nei.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nei.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nei.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfbs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfbs.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfbs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfc1.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfc1.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfc1.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfcb.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfcb.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nfcb.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nip.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nip.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nip.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nlp.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nlp.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nlp.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nlpl.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nlpl.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nlpl.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npcs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npcs.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npcs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npro.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npro.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npro.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npsl.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npsl.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-npsl.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nsc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nsc.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nsc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nsob.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nsob.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nsob.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nut.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nut.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nut.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nv.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nv.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-nv.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-pcs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-pcs.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-pcs.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-psl.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-psl.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-psl.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-sc.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-sc.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-sc.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-sob.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-sob.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-sob.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ta.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ta.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ta.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ts.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ts.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ts.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ut.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ut.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-ut.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-v.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-v.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/opt-v.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/parens.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/parens.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/parens.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/pcs.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/pcs.0.pro					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/pcs.0.stdout					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/struct.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/struct.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/surplusbad.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/surplusbad.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/surplusbad.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/t_indent					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-binary_op.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-binary_op.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-binary_op.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-case_label.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-case_label.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-case_label.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-colon.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-colon.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-colon.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-comma.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-comma.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-comma.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-comment.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-comment.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-comment.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-decl.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-decl.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-decl.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-do_stmt.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-do_stmt.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-do_stmt.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-end_of_file.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-end_of_file.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-end_of_file.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-for_exprs.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-for_exprs.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-for_exprs.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-form_feed.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-form_feed.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-form_feed.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-funcname.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-funcname.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-funcname.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-ident.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-ident.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-ident.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr_stmt.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr_stmt.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr_stmt.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr_stmt_else.0			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr_stmt_else.0.pro		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-if_expr_stmt_else.0.stdout		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_do.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_do.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_do.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_do_else.0			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_do_else.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_do_else.0.stdout		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_else.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_else.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_else.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_for_if_while.0			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_for_if_while.0.pro		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_for_if_while.0.stdout		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_struct_union_enum.0		tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_struct_union_enum.0.pro	tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-keyword_struct_union_enum.0.stdout	tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-lbrace.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-lbrace.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-lbrace.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-lparen.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-lparen.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-lparen.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-newline.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-newline.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-newline.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-period.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-period.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-period.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-postfix_op.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-postfix_op.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-postfix_op.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-preprocessing.0			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-preprocessing.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-preprocessing.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-question.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-question.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-question.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-rbrace.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-rbrace.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-rbrace.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-rparen.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-rparen.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-rparen.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-semicolon.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-semicolon.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-semicolon.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-stmt.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-stmt.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-stmt.0.stdout				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-stmt_list.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-stmt_list.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-stmt_list.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-storage_class.0			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-storage_class.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-storage_class.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-string_prefix.0			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-string_prefix.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-string_prefix.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-switch_expr.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-switch_expr.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-switch_expr.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-type_def.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-type_def.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-type_def.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-unary_op.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-unary_op.0.pro				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-unary_op.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-while_expr.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-while_expr.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/token-while_expr.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/types_from_file.0				tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/types_from_file.0.list			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/types_from_file.0.pro			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/types_from_file.0.stdout			tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/wchar.0					tests-usr.bin-tests	compattestfile,atf
+./usr/tests/usr.bin/indent/wchar.0.stdout				tests-usr.bin-tests	compattestfile,atf
 ./usr/tests/usr.bin/infocmp				tests-usr.bin-tests	compattestfile,atf
 ./usr/tests/usr.bin/infocmp/Atffile			tests-usr.bin-tests	compattestfile,atf
 ./usr/tests/usr.bin/infocmp/Kyuafile			tests-usr.bin-tests	compattestfile,atf,kyua

Index: src/tests/usr.bin/indent/Makefile
diff -u src/tests/usr.bin/indent/Makefile:1.7 src/tests/usr.bin/indent/Makefile:1.8
--- src/tests/usr.bin/indent/Makefile:1.7	Tue Mar  9 20:43:20 2021
+++ src/tests/usr.bin/indent/Makefile	Fri Mar 12 00:13:06 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.7 2021/03/09 20:43:20 rillig Exp $
+#	$NetBSD: Makefile,v 1.8 2021/03/12 00:13:06 rillig Exp $
 
 .include <bsd.own.mk>
 
@@ -265,6 +265,120 @@ FILES+=		struct.0.stdout
 FILES+=		surplusbad.0
 FILES+=		surplusbad.0.stdout
 FILES+=		surplusbad.0.pro
+FILES+=		token-binary_op.0
+FILES+=		token-binary_op.0.pro
+FILES+=		token-binary_op.0.stdout
+FILES+=		token-case_label.0
+FILES+=		token-case_label.0.pro
+FILES+=		token-case_label.0.stdout
+FILES+=		token-colon.0
+FILES+=		token-colon.0.pro
+FILES+=		token-colon.0.stdout
+FILES+=		token-comma.0
+FILES+=		token-comma.0.pro
+FILES+=		token-comma.0.stdout
+FILES+=		token-comment.0
+FILES+=		token-comment.0.pro
+FILES+=		token-comment.0.stdout
+FILES+=		token-decl.0
+FILES+=		token-decl.0.pro
+FILES+=		token-decl.0.stdout
+FILES+=		token-do_stmt.0
+FILES+=		token-do_stmt.0.pro
+FILES+=		token-do_stmt.0.stdout
+FILES+=		token-end_of_file.0
+FILES+=		token-end_of_file.0.pro
+FILES+=		token-end_of_file.0.stdout
+FILES+=		token-for_exprs.0
+FILES+=		token-for_exprs.0.pro
+FILES+=		token-for_exprs.0.stdout
+FILES+=		token-form_feed.0
+FILES+=		token-form_feed.0.pro
+FILES+=		token-form_feed.0.stdout
+FILES+=		token-funcname.0
+FILES+=		token-funcname.0.pro
+FILES+=		token-funcname.0.stdout
+FILES+=		token-ident.0
+FILES+=		token-ident.0.pro
+FILES+=		token-ident.0.stdout
+FILES+=		token-if_expr.0
+FILES+=		token-if_expr.0.pro
+FILES+=		token-if_expr.0.stdout
+FILES+=		token-if_expr_stmt.0
+FILES+=		token-if_expr_stmt.0.pro
+FILES+=		token-if_expr_stmt.0.stdout
+FILES+=		token-if_expr_stmt_else.0
+FILES+=		token-if_expr_stmt_else.0.pro
+FILES+=		token-if_expr_stmt_else.0.stdout
+FILES+=		token-keyword_do.0
+FILES+=		token-keyword_do.0.pro
+FILES+=		token-keyword_do.0.stdout
+FILES+=		token-keyword_do_else.0
+FILES+=		token-keyword_do_else.0.pro
+FILES+=		token-keyword_do_else.0.stdout
+FILES+=		token-keyword_else.0
+FILES+=		token-keyword_else.0.pro
+FILES+=		token-keyword_else.0.stdout
+FILES+=		token-keyword_for_if_while.0
+FILES+=		token-keyword_for_if_while.0.pro
+FILES+=		token-keyword_for_if_while.0.stdout
+FILES+=		token-keyword_struct_union_enum.0
+FILES+=		token-keyword_struct_union_enum.0.pro
+FILES+=		token-keyword_struct_union_enum.0.stdout
+FILES+=		token-lbrace.0
+FILES+=		token-lbrace.0.pro
+FILES+=		token-lbrace.0.stdout
+FILES+=		token-lparen.0
+FILES+=		token-lparen.0.pro
+FILES+=		token-lparen.0.stdout
+FILES+=		token-newline.0
+FILES+=		token-newline.0.pro
+FILES+=		token-newline.0.stdout
+FILES+=		token-period.0
+FILES+=		token-period.0.pro
+FILES+=		token-period.0.stdout
+FILES+=		token-postfix_op.0
+FILES+=		token-postfix_op.0.pro
+FILES+=		token-postfix_op.0.stdout
+FILES+=		token-preprocessing.0
+FILES+=		token-preprocessing.0.pro
+FILES+=		token-preprocessing.0.stdout
+FILES+=		token-question.0
+FILES+=		token-question.0.pro
+FILES+=		token-question.0.stdout
+FILES+=		token-rbrace.0
+FILES+=		token-rbrace.0.pro
+FILES+=		token-rbrace.0.stdout
+FILES+=		token-rparen.0
+FILES+=		token-rparen.0.pro
+FILES+=		token-rparen.0.stdout
+FILES+=		token-semicolon.0
+FILES+=		token-semicolon.0.pro
+FILES+=		token-semicolon.0.stdout
+FILES+=		token-stmt.0
+FILES+=		token-stmt.0.pro
+FILES+=		token-stmt.0.stdout
+FILES+=		token-stmt_list.0
+FILES+=		token-stmt_list.0.pro
+FILES+=		token-stmt_list.0.stdout
+FILES+=		token-storage_class.0
+FILES+=		token-storage_class.0.pro
+FILES+=		token-storage_class.0.stdout
+FILES+=		token-string_prefix.0
+FILES+=		token-string_prefix.0.pro
+FILES+=		token-string_prefix.0.stdout
+FILES+=		token-switch_expr.0
+FILES+=		token-switch_expr.0.pro
+FILES+=		token-switch_expr.0.stdout
+FILES+=		token-type_def.0
+FILES+=		token-type_def.0.pro
+FILES+=		token-type_def.0.stdout
+FILES+=		token-unary_op.0
+FILES+=		token-unary_op.0.pro
+FILES+=		token-unary_op.0.stdout
+FILES+=		token-while_expr.0
+FILES+=		token-while_expr.0.pro
+FILES+=		token-while_expr.0.stdout
 FILES+=		types_from_file.0
 FILES+=		types_from_file.0.stdout
 FILES+=		types_from_file.0.list

Added files:

Index: src/tests/usr.bin/indent/token-binary_op.0
diff -u /dev/null src/tests/usr.bin/indent/token-binary_op.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-binary_op.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-binary_op.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for binary operators like '+', '&&' and several others.
+ *
+ * Several binary operators can be used as unary operators as well, or in
+ * other contexts.  An example for such an operator is '*', which can be a
+ * multiplication, or pointer dereference, or pointer type declaration.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-binary_op.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-binary_op.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-binary_op.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-binary_op.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-binary_op.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-binary_op.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-binary_op.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-binary_op.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for binary operators like '+', '&&' and several others.
+ *
+ * Several binary operators can be used as unary operators as well, or in
+ * other contexts.  An example for such an operator is '*', which can be a
+ * multiplication, or pointer dereference, or pointer type declaration.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-case_label.0
diff -u /dev/null src/tests/usr.bin/indent/token-case_label.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-case_label.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-case_label.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for formatting of case labels in switch statements.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-case_label.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-case_label.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-case_label.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-case_label.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-case_label.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-case_label.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-case_label.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-case_label.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for formatting of case labels in switch statements.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-colon.0
diff -u /dev/null src/tests/usr.bin/indent/token-colon.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-colon.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,17 @@
+/* $NetBSD: token-colon.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for formatting of the colon token, which is used in the following
+ * contexts:
+ *
+ * After a label that is the target of a goto statement.
+ *
+ * In a switch statement, after a case label or the default label.
+ *
+ * As part of the conditional expression operator '?:'.
+ *
+ * In the declaration of a struct member that is a bit-field.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-colon.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-colon.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-colon.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-colon.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-colon.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-colon.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-colon.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,17 @@
+/* $NetBSD: token-colon.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for formatting of the colon token, which is used in the following
+ * contexts:
+ *
+ * After a label that is the target of a goto statement.
+ *
+ * In a switch statement, after a case label or the default label.
+ *
+ * As part of the conditional expression operator '?:'.
+ *
+ * In the declaration of a struct member that is a bit-field.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-comma.0
diff -u /dev/null src/tests/usr.bin/indent/token-comma.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-comma.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,17 @@
+/* $NetBSD: token-comma.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the comma, which is used in the following contexts:
+ *
+ * The binary operator ',' inserts a sequence point between the evaluation of
+ * its operands.
+ *
+ * The parameters of a function declaration or a macro definition are
+ * separated by a comma.
+ *
+ * The arguments of a function call expression or a macro invocation are
+ * separated by a comma.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-comma.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-comma.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-comma.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-comma.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-comma.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-comma.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-comma.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,17 @@
+/* $NetBSD: token-comma.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the comma, which is used in the following contexts:
+ *
+ * The binary operator ',' inserts a sequence point between the evaluation of
+ * its operands.
+ *
+ * The parameters of a function declaration or a macro definition are
+ * separated by a comma.
+ *
+ * The arguments of a function call expression or a macro invocation are
+ * separated by a comma.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-comment.0
diff -u /dev/null src/tests/usr.bin/indent/token-comment.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-comment.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,10 @@
+/* $NetBSD: token-comment.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for formatting comments.  C99 defines block comments and end-of-line
+ * comments.  Indent further distinguishes box comments that are a special
+ * kind of block comments.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-comment.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-comment.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-comment.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-comment.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-comment.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-comment.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-comment.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,10 @@
+/* $NetBSD: token-comment.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for formatting comments.  C99 defines block comments and end-of-line
+ * comments.  Indent further distinguishes box comments that are a special
+ * kind of block comments.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-decl.0
diff -u /dev/null src/tests/usr.bin/indent/token-decl.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-decl.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-decl.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for declarations.
+ *
+ * Indent distinguishes global and local declarations.
+ *
+ * Declarations can be for functions or for variables.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-decl.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-decl.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-decl.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-decl.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-decl.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-decl.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-decl.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-decl.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for declarations.
+ *
+ * Indent distinguishes global and local declarations.
+ *
+ * Declarations can be for functions or for variables.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-do_stmt.0
diff -u /dev/null src/tests/usr.bin/indent/token-do_stmt.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-do_stmt.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-do_stmt.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for do-while statements.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-do_stmt.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-do_stmt.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-do_stmt.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-do_stmt.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-do_stmt.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-do_stmt.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-do_stmt.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-do_stmt.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for do-while statements.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-end_of_file.0
diff -u /dev/null src/tests/usr.bin/indent/token-end_of_file.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-end_of_file.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-end_of_file.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the end of a file.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-end_of_file.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-end_of_file.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-end_of_file.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-end_of_file.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-end_of_file.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-end_of_file.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-end_of_file.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-end_of_file.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the end of a file.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-for_exprs.0
diff -u /dev/null src/tests/usr.bin/indent/token-for_exprs.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-for_exprs.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,14 @@
+/* $NetBSD: token-for_exprs.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Test for 'for' loops.
+ *
+ * Most 'for' loops have 3 expressions in their head.  Each of these
+ * expressions is optional though.
+ *
+ * When all 3 expressions are omitted, the 'for' loop is often called a
+ * 'forever' loop.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-for_exprs.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-for_exprs.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-for_exprs.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-for_exprs.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-for_exprs.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-for_exprs.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-for_exprs.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,14 @@
+/* $NetBSD: token-for_exprs.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Test for 'for' loops.
+ *
+ * Most 'for' loops have 3 expressions in their head.  Each of these
+ * expressions is optional though.
+ *
+ * When all 3 expressions are omitted, the 'for' loop is often called a
+ * 'forever' loop.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-form_feed.0
diff -u /dev/null src/tests/usr.bin/indent/token-form_feed.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-form_feed.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-form_feed.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for form feeds, which is a control character (C99 5.2.1p3).
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-form_feed.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-form_feed.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-form_feed.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-form_feed.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-form_feed.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-form_feed.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-form_feed.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-form_feed.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for form feeds, which is a control character (C99 5.2.1p3).
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-funcname.0
diff -u /dev/null src/tests/usr.bin/indent/token-funcname.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-funcname.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-funcname.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for function names.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-funcname.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-funcname.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-funcname.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-funcname.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-funcname.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-funcname.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-funcname.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-funcname.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for function names.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-ident.0
diff -u /dev/null src/tests/usr.bin/indent/token-ident.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-ident.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-ident.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for identifiers.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-ident.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-ident.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-ident.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-ident.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-ident.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-ident.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-ident.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-ident.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for identifiers.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-if_expr.0
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-if_expr.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for 'if' followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-if_expr.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-if_expr.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-if_expr.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-if_expr.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for 'if' followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-if_expr_stmt.0
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr_stmt.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr_stmt.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,13 @@
+/* $NetBSD: token-if_expr_stmt.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for 'if' followed by a parenthesized expression and a statement.
+ *
+ * At this point, the 'if' statement is not necessarily complete, it can be
+ * completed with the keyword 'else' followed by a statement.
+ *
+ * Any token other than 'else' completes the 'if' statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-if_expr_stmt.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr_stmt.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr_stmt.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-if_expr_stmt.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-if_expr_stmt.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr_stmt.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr_stmt.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,13 @@
+/* $NetBSD: token-if_expr_stmt.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for 'if' followed by a parenthesized expression and a statement.
+ *
+ * At this point, the 'if' statement is not necessarily complete, it can be
+ * completed with the keyword 'else' followed by a statement.
+ *
+ * Any token other than 'else' completes the 'if' statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-if_expr_stmt_else.0
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr_stmt_else.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr_stmt_else.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,11 @@
+/* $NetBSD: token-if_expr_stmt_else.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for 'if' followed by a parenthesized expression, a statement and the
+ * keyword 'else'.
+ *
+ * At this point, the statement needs to be completed with another statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-if_expr_stmt_else.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr_stmt_else.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr_stmt_else.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-if_expr_stmt_else.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-if_expr_stmt_else.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-if_expr_stmt_else.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-if_expr_stmt_else.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,11 @@
+/* $NetBSD: token-if_expr_stmt_else.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for 'if' followed by a parenthesized expression, a statement and the
+ * keyword 'else'.
+ *
+ * At this point, the statement needs to be completed with another statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_do.0
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_do.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_do.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_do.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'do' that begins a do-while statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_do.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_do.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_do.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_do.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-keyword_do.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_do.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_do.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_do.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'do' that begins a do-while statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_do_else.0
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_do_else.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_do_else.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,10 @@
+/* $NetBSD: token-keyword_do_else.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'do' or 'else'.  These two keywords are followed by
+ * a space.  In contrast to 'for', 'if' and 'while', the space is not
+ * followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_do_else.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_do_else.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_do_else.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_do_else.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-keyword_do_else.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_do_else.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_do_else.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,10 @@
+/* $NetBSD: token-keyword_do_else.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'do' or 'else'.  These two keywords are followed by
+ * a space.  In contrast to 'for', 'if' and 'while', the space is not
+ * followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_else.0
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_else.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_else.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-keyword_else.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'else'.
+ *
+ * When parsing nested incomplete 'if' statements, the problem of the
+ * 'dangling else' occurs.  It is resolved by binding the 'else' to the
+ * innermost incomplete 'if' statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_else.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_else.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_else.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_else.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-keyword_else.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_else.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_else.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-keyword_else.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'else'.
+ *
+ * When parsing nested incomplete 'if' statements, the problem of the
+ * 'dangling else' occurs.  It is resolved by binding the 'else' to the
+ * innermost incomplete 'if' statement.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_for_if_while.0
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_for_if_while.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_for_if_while.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,11 @@
+/* $NetBSD: token-keyword_for_if_while.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keywords 'for', 'if' and 'while'.  These keywords have in
+ * common that they are followed by a space and a parenthesized statement
+ * head.  For 'if' and 'while', this head is a single expression.  For 'for',
+ * the head is 0 to 3 expressions, separated by semicolons.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_for_if_while.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_for_if_while.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_for_if_while.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_for_if_while.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-keyword_for_if_while.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_for_if_while.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_for_if_while.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,11 @@
+/* $NetBSD: token-keyword_for_if_while.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keywords 'for', 'if' and 'while'.  These keywords have in
+ * common that they are followed by a space and a parenthesized statement
+ * head.  For 'if' and 'while', this head is a single expression.  For 'for',
+ * the head is 0 to 3 expressions, separated by semicolons.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_struct_union_enum.0
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_struct_union_enum.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_struct_union_enum.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_struct_union_enum.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keywords 'struct', 'union' and 'enum'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_struct_union_enum.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-keyword_struct_union_enum.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-keyword_struct_union_enum.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keywords 'struct', 'union' and 'enum'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-lbrace.0
diff -u /dev/null src/tests/usr.bin/indent/token-lbrace.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-lbrace.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,15 @@
+/* $NetBSD: token-lbrace.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '{'.
+ *
+ * It is used as the start marker of a block of statements.
+ *
+ * It is used in initializers.
+ *
+ * In macro arguments, a '{' is an ordinary character, it does not need to be
+ * balanced.  This is in contrast to '(', which must be balanced with ')'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-lbrace.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-lbrace.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-lbrace.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-lbrace.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-lbrace.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-lbrace.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-lbrace.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,15 @@
+/* $NetBSD: token-lbrace.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '{'.
+ *
+ * It is used as the start marker of a block of statements.
+ *
+ * It is used in initializers.
+ *
+ * In macro arguments, a '{' is an ordinary character, it does not need to be
+ * balanced.  This is in contrast to '(', which must be balanced with ')'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-lparen.0
diff -u /dev/null src/tests/usr.bin/indent/token-lparen.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-lparen.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,18 @@
+/* $NetBSD: token-lparen.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '(', which has several possible meanings.
+ *
+ * In an expression, it overrides the precedence rules by explicitly grouping
+ * a subexpression in parentheses.
+ *
+ * In an expression, it marks the beginning of a type cast or conversion.
+ *
+ * In a function call expression, it marks the beginning of the function
+ * arguments.
+ *
+ * In a type declaration, it marks the beginning of the function parameters.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-lparen.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-lparen.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-lparen.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-lparen.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-lparen.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-lparen.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-lparen.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,18 @@
+/* $NetBSD: token-lparen.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '(', which has several possible meanings.
+ *
+ * In an expression, it overrides the precedence rules by explicitly grouping
+ * a subexpression in parentheses.
+ *
+ * In an expression, it marks the beginning of a type cast or conversion.
+ *
+ * In a function call expression, it marks the beginning of the function
+ * arguments.
+ *
+ * In a type declaration, it marks the beginning of the function parameters.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-newline.0
diff -u /dev/null src/tests/usr.bin/indent/token-newline.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-newline.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,17 @@
+/* $NetBSD: token-newline.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*-
+ * Tests for the token '\n', which ends a line.
+ *
+ * A newline ends an end-of-line comment that has been started with '//'.
+ *
+ * When a line ends with a backslash immediately followed by '\n', these two
+ * characters are merged and continue the logical line.
+ * TODO: only in macros?
+ * TODO: in string literals as well?
+ *
+ * In other contexts, a newline is an ordinary space character.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-newline.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-newline.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-newline.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-newline.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-newline.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-newline.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-newline.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,17 @@
+/* $NetBSD: token-newline.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*-
+ * Tests for the token '\n', which ends a line.
+ *
+ * A newline ends an end-of-line comment that has been started with '//'.
+ *
+ * When a line ends with a backslash immediately followed by '\n', these two
+ * characters are merged and continue the logical line.
+ * TODO: only in macros?
+ * TODO: in string literals as well?
+ *
+ * In other contexts, a newline is an ordinary space character.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-period.0
diff -u /dev/null src/tests/usr.bin/indent/token-period.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-period.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-period.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '.'.
+ *
+ * The '.' in numbers such as 3.14159265358979 is not a token '.'.
+ *
+ * The token '.' is used to access a member of a struct or union.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-period.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-period.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-period.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-period.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-period.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-period.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-period.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,12 @@
+/* $NetBSD: token-period.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '.'.
+ *
+ * The '.' in numbers such as 3.14159265358979 is not a token '.'.
+ *
+ * The token '.' is used to access a member of a struct or union.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-postfix_op.0
diff -u /dev/null src/tests/usr.bin/indent/token-postfix_op.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-postfix_op.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-postfix_op.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the postfix increment and decrement operators '++' and '--'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-postfix_op.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-postfix_op.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-postfix_op.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-postfix_op.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-postfix_op.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-postfix_op.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-postfix_op.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-postfix_op.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the postfix increment and decrement operators '++' and '--'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-preprocessing.0
diff -u /dev/null src/tests/usr.bin/indent/token-preprocessing.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-preprocessing.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,13 @@
+/* $NetBSD: token-preprocessing.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*-
+ * Tests for indenting preprocessing directives:
+ *
+ * #define
+ * #ifdef
+ * #pragma
+ * #line
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-preprocessing.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-preprocessing.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-preprocessing.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-preprocessing.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-preprocessing.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-preprocessing.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-preprocessing.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,13 @@
+/* $NetBSD: token-preprocessing.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*-
+ * Tests for indenting preprocessing directives:
+ *
+ * #define
+ * #ifdef
+ * #pragma
+ * #line
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-question.0
diff -u /dev/null src/tests/usr.bin/indent/token-question.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-question.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-question.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the '?:' operator.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-question.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-question.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-question.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-question.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-question.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-question.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-question.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-question.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the '?:' operator.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-rbrace.0
diff -u /dev/null src/tests/usr.bin/indent/token-rbrace.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-rbrace.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-rbrace.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '}', which ends the corresponding '{' token.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-rbrace.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-rbrace.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-rbrace.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-rbrace.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-rbrace.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-rbrace.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-rbrace.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-rbrace.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token '}', which ends the corresponding '{' token.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-rparen.0
diff -u /dev/null src/tests/usr.bin/indent/token-rparen.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-rparen.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-rparen.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token ')', which ends the corresponding ')' token.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-rparen.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-rparen.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-rparen.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-rparen.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-rparen.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-rparen.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-rparen.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-rparen.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token ')', which ends the corresponding ')' token.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-semicolon.0
diff -u /dev/null src/tests/usr.bin/indent/token-semicolon.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-semicolon.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,14 @@
+/* $NetBSD: token-semicolon.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token ';'.
+ *
+ * The ';' ends a declaration.
+ *
+ * The ';' ends a statement.
+ *
+ * The ';' separates the 3 expressions in the head of the 'for' loop.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-semicolon.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-semicolon.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-semicolon.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-semicolon.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-semicolon.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-semicolon.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-semicolon.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,14 @@
+/* $NetBSD: token-semicolon.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the token ';'.
+ *
+ * The ';' ends a declaration.
+ *
+ * The ';' ends a statement.
+ *
+ * The ';' separates the 3 expressions in the head of the 'for' loop.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-stmt.0
diff -u /dev/null src/tests/usr.bin/indent/token-stmt.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-stmt.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-stmt.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for statements.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-stmt.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-stmt.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-stmt.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-stmt.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-stmt.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-stmt.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-stmt.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-stmt.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for statements.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-stmt_list.0
diff -u /dev/null src/tests/usr.bin/indent/token-stmt_list.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-stmt_list.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,11 @@
+/* $NetBSD: token-stmt_list.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for lists of statements.
+ *
+ * Since C99, in such a statement list, statements can be intermixed with
+ * declarations in arbitrary ways.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-stmt_list.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-stmt_list.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-stmt_list.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-stmt_list.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-stmt_list.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-stmt_list.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-stmt_list.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,11 @@
+/* $NetBSD: token-stmt_list.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for lists of statements.
+ *
+ * Since C99, in such a statement list, statements can be intermixed with
+ * declarations in arbitrary ways.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-storage_class.0
diff -u /dev/null src/tests/usr.bin/indent/token-storage_class.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-storage_class.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-storage_class.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for storage classes such as 'extern', 'static', but not 'typedef'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-storage_class.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-storage_class.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-storage_class.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-storage_class.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-storage_class.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-storage_class.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-storage_class.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-storage_class.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for storage classes such as 'extern', 'static', but not 'typedef'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-string_prefix.0
diff -u /dev/null src/tests/usr.bin/indent/token-string_prefix.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-string_prefix.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-string_prefix.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for strings of wide characters, which are prefixed with 'L'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-string_prefix.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-string_prefix.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-string_prefix.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-string_prefix.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-string_prefix.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-string_prefix.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-string_prefix.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-string_prefix.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for strings of wide characters, which are prefixed with 'L'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-switch_expr.0
diff -u /dev/null src/tests/usr.bin/indent/token-switch_expr.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-switch_expr.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-switch_expr.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'switch' followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-switch_expr.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-switch_expr.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-switch_expr.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-switch_expr.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-switch_expr.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-switch_expr.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-switch_expr.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-switch_expr.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'switch' followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-type_def.0
diff -u /dev/null src/tests/usr.bin/indent/token-type_def.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-type_def.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-type_def.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'typedef'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-type_def.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-type_def.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-type_def.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-type_def.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-type_def.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-type_def.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-type_def.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-type_def.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'typedef'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-unary_op.0
diff -u /dev/null src/tests/usr.bin/indent/token-unary_op.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-unary_op.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-unary_op.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for unary operators, such as '+', '-', '*', '&'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-unary_op.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-unary_op.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-unary_op.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-unary_op.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-unary_op.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-unary_op.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-unary_op.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-unary_op.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for unary operators, such as '+', '-', '*', '&'.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-while_expr.0
diff -u /dev/null src/tests/usr.bin/indent/token-while_expr.0:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-while_expr.0	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-while_expr.0,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'while', followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */
Index: src/tests/usr.bin/indent/token-while_expr.0.pro
diff -u /dev/null src/tests/usr.bin/indent/token-while_expr.0.pro:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-while_expr.0.pro	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-while_expr.0.pro,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * TODO: Explain the command line options of the test.
+ */
+
+/* TODO: Add some command line options */
Index: src/tests/usr.bin/indent/token-while_expr.0.stdout
diff -u /dev/null src/tests/usr.bin/indent/token-while_expr.0.stdout:1.1
--- /dev/null	Fri Mar 12 00:13:07 2021
+++ src/tests/usr.bin/indent/token-while_expr.0.stdout	Fri Mar 12 00:13:06 2021
@@ -0,0 +1,8 @@
+/* $NetBSD: token-while_expr.0.stdout,v 1.1 2021/03/12 00:13:06 rillig Exp $ */
+/* $FreeBSD$ */
+
+/*
+ * Tests for the keyword 'while', followed by a parenthesized expression.
+ */
+
+/* TODO: Add some code to be formatted. */

Reply via email to