1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2019 Red Hat, Inc. 4 */ 5 6 #ifndef TST_COREDUMP__ 7 #define TST_COREDUMP__ 8 9 /* 10 * If crash is expected, avoid dumping corefile. 11 * 1 is a special value, that disables core-to-pipe. 12 * At the same time it is small enough value for 13 * core-to-file, so it skips creating cores as well. 14 */ 15 void tst_no_corefile(int verbose); 16 17 #endif /* TST_COREDUMP_H */ 18 19