Lines Matching +full:test +full:- +full:config
2 * Excessively long password tests for the pam-krb5 module.
4 * This test case includes all tests for excessively long passwords that can
10 * SPDX-License-Identifier: BSD-3-clause or GPL-1+
13 #include <config.h>
23 struct script_config config; in main() local
28 memset(&config, 0, sizeof(config)); in main()
29 config.user = "test"; in main()
31 /* Test a password that is too long. */ in main()
34 config.password = password; in main()
35 run_script("data/scripts/long/password", &config); in main()
36 run_script("data/scripts/long/password-debug", &config); in main()
38 /* Test a stored authtok that's too long. */ in main()
39 config.authtok = password; in main()
40 config.password = "testing"; in main()
41 run_script("data/scripts/long/use-first", &config); in main()
42 run_script("data/scripts/long/use-first-debug", &config); in main()