summaryrefslogtreecommitdiff
path: root/regress
AgeCommit message (Collapse)Author
2019-08-14Add test case for ber_scanf_elements.rob
Significant tweak by and ok martijn@
2019-08-14Add ikev2_ikesa_info dummy definition for parser test.tobhe
2019-08-13Move comment about exabgp to the rule since this way it is shown to the user.Claudio Jeker
Reminded by bluhm@
2019-08-12Stop pulling libssl into rpki-client.Joel Sing
None of this code actually does TLS, hence libssl is not needed. Instead, pull in the correct headers and call the appropriate libcrypto initialisation functions (even this is only necessary to support OpenSSL prior to 1.1). While here also remove libssl/libcrypto initialisation/uninitialisation from main() - it should only be necessary in proc_parser(). ok deraadt@ job@
2019-08-09Move snmpd regress test from snmpctl(8) to snmp(1).Martijn van Duren
2019-08-07Actually make the hand coded ASPATH a AS_SEQUENCE and not an AS_SET.Claudio Jeker
2019-08-07The as0 regress can be enabled now. Needs exabgp to run else it is skipped.Claudio Jeker
2019-08-06Use SUDO to run test as root.Alexander Bluhm
2019-08-06Implement RFC7607 testing using exabgp since we need to fiddle withClaudio Jeker
attributes. Currently not enabled since it will fail.
2019-08-06Test more variants to specify the root directory.Alexander Bluhm
2019-08-06Cleanup the scripts a bit, error out early if not run as root, useClaudio Jeker
set -x later in the script instead of ksh -x to shorten the output of the tests.
2019-08-06Update output file for mrt table-mp dumps since those can now dumpClaudio Jeker
the MPLS VPN as well.
2019-08-05Test realpath and unveil if the root directory is written as "//".Alexander Bluhm
2019-08-05Link regress realpath-unmount to build.Alexander Bluhm
2019-08-05Call realpath(3) in combination with chroot(2) and chdir(2).Alexander Bluhm
Use umount(8) to check that the mountpoint leaks no vnode. from Moritz Buhl
2019-08-04Add arm64 asm for stackpivot regress test.mortimer
2019-08-04Test that unmount works after calling unlink(2) with relativeAlexander Bluhm
directories obtained by chdir(2).
2019-08-01Call unveil(2) in combination with unlink(2) and chroot(2).Alexander Bluhm
Use umount(8) to check that the mountpoint leaks no vnode.
2019-08-02pass -Dchecksum around so that checksum is exercised.Marc Espie
Also, inject fault and verify that package does indeed not get fully deleted
2019-08-02fix some memleaks in test_helper codeDamien Miller
bz#3037 from Jitendra Sharma
2019-08-01Link regress unveil-unmount to build.Alexander Bluhm
2019-08-01Call unveil(2) in combination with unlink(2) and chroot(2).Alexander Bluhm
Use umount(8) to check that the mountpoint leaks no vnode.
2019-07-29regress: Add mips64 stack pivot asm for octeon in stackpivot testsmortimer
2019-07-26The strncat test is passing, do not add it to expected failures.Alexander Bluhm
2019-07-26Restrict limit-keytype to types supported by build. This means we haveDarren Tucker
to skip a couple tests when only one key type is supported.
2019-07-25Since switching from bfd to lld linker there are no warnings aboutAlexander Bluhm
insecure libc functions anymore. To avoid false positives, change the regress result from FAILED to EXPECTED_FAIL if lld is used. When lld will support this feature, the regress tests can be enabled again. OK deraadt@
2019-07-25Only use supported key types during KRL test, preferring ed25519 sinceDarren Tucker
it's supported by both OpenSSL and non-OpenSSL builds.
2019-07-25Switch keys-command test from rsa to ed25519 since it's supported forDarren Tucker
both OpenSSL and non-OpenSSL builds.
2019-07-25Make certificate tests work with the supported key algorithms. AllowsDarren Tucker
tests to pass when built without OpenSSL.
2019-07-23Construct list of key types to test based on the types supported by theDarren Tucker
binaries.
2019-07-23Only use DSA key type in tests if binaries support it.Darren Tucker
2019-07-23Fix realpath(3) errno code for an empty input path string.Stefan Sperling
It should return ENOENT in this case, but was returning EINVAL. ok bluhm@ deraadt@
2019-07-23Skip DH group generation test if binaries don't support DH-GEX.Darren Tucker
2019-07-23Only test conversion of key types supported by the binaries.Darren Tucker
2019-07-23Only add ssh-dss to allowed key types if it's supported by the binary.Darren Tucker
2019-07-20Remove the sleeps and thus races from the forwarding test. They wereDarren Tucker
originally required to work with Protocol 1, but now we can use ssh -N and the control socket without the sleeps. While there, suppress output fro the control exit commands.
2019-07-20Allow SLEEPTIME to be overridden.Darren Tucker
2019-07-20Move sleep time into a variable so that we can increase it for platformsDarren Tucker
or configurations that are much slower then usual.
2019-07-19add regression tests for scp for out-of-destination path file creationDamien Miller
by Harry Sintonen via Jakub Jelen in bz3007
2019-07-18new test for an empty text block; from rea@ via bapt@ (FreeBSD)Ingo Schwarze
2019-07-17Update appstest.shKinichiro Inoguchi
- Add -modulus for dsa sub command - Remove -nextprotoneg
2019-07-17The Adj-RIB-Out is gone (or actually implemented differently). AdjustClaudio Jeker
the expected output files.
2019-07-16adapt to sshbuf_dtob64() changeDamien Miller
2019-07-16New realpath(3) requires existing files. Create fake disk imagesAlexander Bluhm
that are used in vmd(8) config parser.
2019-07-16Call stat(2) only once in realpath(3) userland reference implementation.Alexander Bluhm
2019-07-16so the output changed slightly, againMarc Espie
2019-07-16Remove ssh1 files from CLEANFILES since ssh1 no longer supported.Darren Tucker
2019-07-16Update names of host key files in CLEANFILES to match recent changes toDarren Tucker
the tests.
2019-07-15Our kernel __realpath(2) implementation does not allow non-existingAlexander Bluhm
files anymore. This is conforming to POSIX. Adjust the regression test to the new behavior. OK beck@
2019-07-15unit tests for sshbuf_cmp() and sshbuf_find(); ok markusDamien Miller