1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2013 Cyril Hrubis <chrubis@suse.cz> 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