xref: /aosp_15_r20/external/ltp/include/tst_defaults.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2013 Cyril Hrubis <[email protected]>
4  */
5 
6 #ifndef TST_DEFAULTS_H_
7 #define TST_DEFAULTS_H_
8 
9 /*
10  * This is the default temporary directory used by tst_tmpdir().
11  *
12  * This is used when TMPDIR env variable is not set.
13  */
14 #define TEMPDIR	"/tmp"
15 
16 /*
17  * Default filesystem to be used for tests.
18  */
19 #define DEFAULT_FS_TYPE "ext2"
20 
21 #endif /* TST_DEFAULTS_H_ */
22