blob: 45a1b24daefbeabba3db466cb16b69d2b1623713 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $NetBSD: opt_P.c,v 1.5 2022/04/24 09:04:12 rillig Exp $ */
/*
* Tests for the option '-P', which specifies a profile file to be used
* instead of '$HOME/.indent.pro'.
*
* The format of the tests in t_options.sh does not allow the tests to create
* arbitrary files, therefore this test is rather restricted.
*
* See also:
* t_misc for tests with individual setup
*/
//indent input
int decl;
//indent end
//indent run -di24 -P/dev/null -di32
int decl;
//indent end
|