[BACK]Return to opt_bap.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / tests / usr.bin / indent

File: [cvs.NetBSD.org] / src / tests / usr.bin / indent / opt_bap.c (download)

Revision 1.3, Mon Oct 18 07:11:31 2021 UTC (2 years, 6 months ago) by rillig
Branch: MAIN
Changes since 1.2: +2 -31 lines

tests/indent: merge duplicate input/output and output/output

No functional change.

/* $NetBSD: opt_bap.c,v 1.3 2021/10/18 07:11:31 rillig Exp $ */
/* $FreeBSD$ */

/*
 * Tests for the options '-bap' and '-nbap'.
 *
 * The option '-bap' forces a blank line after every function body.
 *
 * The option '-nbap' keeps everything as is.
 */

#indent input
static void one_liner(void){}
static void several_lines(void)
{
	action();
}
int main(void){}
int global_variable;

void already_has_blank_line_below(void)
{
}

void has_several_blank_lines_below(void)
{
}



int		the_end;
#indent end

#indent run -bap
static void
one_liner(void)
{
}
/* $ FIXME: needs a blank line here */
static void
several_lines(void)
{
	action();
}
/* $ FIXME: needs a blank line here */
int
main(void)
{
}
/* $ FIXME: needs a blank line here */
int		global_variable;

void
already_has_blank_line_below(void)
{
}

void
has_several_blank_lines_below(void)
{
}



int		the_end;
#indent end

#indent run-equals-prev-output -nbap