summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2018-08-27 13:08:01 +1000
committerDamien Miller <djm@mindrot.org>2018-08-27 13:08:01 +1000
commit9617816dbe73ec4d65075f4d897443f63a97c87f (patch)
treeb1a36dfeffb52c1b2ff302d604e05519fbe7ba78 /regress
parent71508e06fab14bc415a79a08f5535ad7bffa93d9 (diff)
document some more regress control env variables
Specifically SKIP_UNIT, USE_VALGRING and LTESTS. Sort the list of environment variables. Based on patch from Jakub Jelen
Diffstat (limited to 'regress')
-rw-r--r--regress/README.regress23
1 files changed, 15 insertions, 8 deletions
diff --git a/regress/README.regress b/regress/README.regress
index 867855017..315fe149a 100644
--- a/regress/README.regress
+++ b/regress/README.regress
@@ -20,19 +20,26 @@ suite is based on OpenBSD's with modifications.
20 20
21Environment variables. 21Environment variables.
22 22
23SUDO: path to sudo command, if desired. Note that some systems (notably 23SKIP_UNIT: Skip unit tests.
24 systems using PAM) require sudo to execute some tests. 24SUDO: path to sudo/doas command, if desired. Note that some systems
25TEST_SSH_TRACE: set to "yes" for verbose output from tests 25 (notably systems using PAM) require sudo to execute some tests.
26TEST_SSH_QUIET: set to "yes" to suppress non-fatal output. 26LTESTS: Whitespace separated list of tests (filenames without the .sh
27TEST_SSH_x: path to "ssh" command under test, where x=SSH,SSHD,SSHAGENT,SSHADD 27 extension) to run.
28 SSHKEYGEN,SSHKEYSCAN,SFTP,SFTPSERVER
29OBJ: used by test scripts to access build dir. 28OBJ: used by test scripts to access build dir.
30TEST_SHELL: shell used for running the test scripts. 29TEST_SHELL: shell used for running the test scripts.
30TEST_SSH_FAIL_FATAL: set to "yes" to make any failure abort the test
31 currently in progress.
31TEST_SSH_PORT: TCP port to be used for the listening tests. 32TEST_SSH_PORT: TCP port to be used for the listening tests.
32TEST_SSH_SSH_CONFOPTS: Configuration directives to be added to ssh_config 33TEST_SSH_QUIET: set to "yes" to suppress non-fatal output.
33 before running each test.
34TEST_SSH_SSHD_CONFOPTS: Configuration directives to be added to sshd_config 34TEST_SSH_SSHD_CONFOPTS: Configuration directives to be added to sshd_config
35 before running each test. 35 before running each test.
36TEST_SSH_SSH_CONFOPTS: Configuration directives to be added to
37 ssh_config before running each test.
38TEST_SSH_TRACE: set to "yes" for verbose output from tests
39TEST_SSH_x: path to "ssh" command under test, where x is one of
40 SSH, SSHD, SSHAGENT, SSHADD, SSHKEYGEN, SSHKEYSCAN, SFTP or
41 SFTPSERVER
42USE_VALGRIND: Run the tests under valgrind memory checker.
36 43
37 44
38Individual tests. 45Individual tests.