summaryrefslogtreecommitdiff
path: root/regress/sys
AgeCommit message (Collapse)Author
2012-04-12rfork RIPPhilip Guenthe
2012-03-05If the main thread exits, the process should still be able to getPhilip Guenthe
signals
2012-02-08Add IPv6 tests for fragmented destination options, fragments withoutAlexander Bluhm
payload, fragmented UDP packets.
2012-01-31Add test suite for IPv6 neighbor discovery protocol. Send all kindAlexander Bluhm
of solicitations to remote host and check responses. This can be used to test both pf neighbor discovery states and the IPv6 stack.
2012-01-27Test sending a short atomic IPv6 fragment.Alexander Bluhm
2012-01-24Add a test for atomic IPv6 fragment reassembly.Alexander Bluhm
2012-01-23After overlapping IPv6 fragments have been dropped, new fragmentsAlexander Bluhm
with the same id get reassembled into a valid packet. Adapt test.
2012-01-13According to RFC 5722 we drop all IPv6 fragments that belong to aAlexander Bluhm
packet with overlaps. Adapt existing tests.
2012-01-11Do not read dstaddr from command line, get it from addr.py.Alexander Bluhm
2012-01-10According to RFC 5722 we drop all IPv6 fragments that belong to aAlexander Bluhm
packet with overlaps. Adapt existing tests and add one more.
2012-01-06Add tests for IPv6 fragment reassembly. Hand-crafted ping6Alexander Bluhm
echo-request fragments are sent by scapy to the target machine. There they get reassembled and a echo-reply comes back. The ping6 payload is checked.
2011-11-26If sigaltstack() fails, report which thread correctlyPhilip Guenthe
Pointed out by Steffen Daode Nurpmeso (sdaoden at googlemail.com)
2011-11-22Add a test for forked processes inheriting their parent's signal stack.Joshua Elsasser
ok guenther@
2011-11-06Regress tests for negative offsets, wrapping offsets, and the lack ofPhilip Guenthe
interaction of pwrite/pwritev with O_APPEND. Based on a patch from Alexander Polakov (polachok at gmail.com) Further tests with deraadt@
2011-11-05Verify this fails with ESPIPE on ttysPhilip Guenthe
2011-10-07Test hint-based mmap allocations.Ariane van der Steldt
A hint-based allocation may only fail if no memory is available near the allocation. The value of near is chosen to be 2GB in this scenario.
2011-10-07mmap with len=0 should fail with EINVAL.Ariane van der Steldt
- posix says so - the current allocator doesn't like it
2011-09-21Add tests for pf fragment reassembly with all kinds of overlapping.Alexander Bluhm
Some fragments contain invalid data, this must be replaced to reassemble a valid packet.
2011-09-19Add a test suite to route ip fragments through a box running pf.Alexander Bluhm
You have to setup four machines manually as described in the makefile. The test uses scapy and python to send ping echo request or udp echo packets along the routers. It analyzes the returned ping echo reply or udp packets or the icmp error packets.
2011-08-29Test that reverse splicing timeout does not affect forward splicing.Alexander Bluhm
2011-08-28Minor cleanup.Alexander Bluhm
2011-08-28Allow splice make regress to run with and without obj directory.Alexander Bluhm
2011-08-21Add one more regression test for socket splicing with idle timeout.Alexander Bluhm
2011-07-23TCP out-of-band data is not reliable. Allow socket splicingAlexander Bluhm
regression tests to tolerate missing urgent bytes.
2011-07-07Add tests for kqueue EVFILT_SIGNAL and that they can't be passed overPhilip Guenthe
sockets
2011-07-07braces rock!Philip Guenthe
2011-07-07Suppress known failuresPhilip Guenthe
2011-07-06Add a regression test for file descriptor passing with UNIX sockets.Matthew Dempsky
ok claudio@
2011-07-06Test handling of non-NUL terminated sun_path values as well as garbagePhilip Guenthe
in the end of the sockaddr_un. Done with claudio@
2011-07-06Switch to a device that isn't deprecated and return more info onPhilip Guenthe
read failure
2011-07-06Add regress for errno returns of failed fchdir()sPhilip Guenthe
2011-07-05Hook unixsock upClaudio Jeker
2011-07-05Regress test for the path length of unix sockets.Claudio Jeker
2011-07-05plug in mmap_write_selfArtur Grabowski
2011-07-05Test for when we're writing to a file from an mmaped area of the file.Artur Grabowski
2011-07-04Add new socket splicing tests for the idle timeout feature. NoteAlexander Bluhm
that you need p5-BSD-Socket-Splice version 0.03 to run the regression tests.
2011-04-22Make the socket splicing regression tests architecture independentAlexander Bluhm
by using the perl module BSD::Socket::Splice from ports. Tested on i386 and sparc64.
2011-04-18Deprecate vnds in favour of svnds.Thordur I. Bjornsson
In effect, this removes the "old" vndX nodes, and renames the svndX nodes to vndX. Old svndX nodes will still continue to work though, for now. Cleanup accordingly. ok deraadt@, todd@ comments and ok on the man page bits from jmc@
2011-04-10Switch back from KERN_PROC2/kinfo_proc2 to KERN_PROC/kinfo_proc nowPhilip Guenthe
that we've got name we want for the API we want "ZAP!" deraadt@
2011-04-04provide fake copies of explicit_bzero in the test scaffolds for kernel codeTheo de Raadt
2011-03-13Make regression tests more reliable.Alexander Bluhm
2011-03-13Test that reading from a spliced socket does not return eof if thereAlexander Bluhm
is still data in the receive socket buffer.
2011-03-12Add more regression tests for socket splicing. These find theAlexander Bluhm
kernel bugs that have slipped through.
2011-03-08Add regression test that checks ENOTSOCK error for non-socket drain.Alexander Bluhm
2011-02-14Make tests more reliable by handling short socket splice correctly.Alexander Bluhm
2011-01-11Fix compiler warning in regression test.Alexander Bluhm
2011-01-07Add kernel regression tests for socket splicing.Alexander Bluhm
2011-01-07do not rely on rndvar.h leaking shit into the namespaceTheo de Raadt
2010-10-15libdes -> libcryptoJonathan Gray
2010-09-22Test vectors for GMAC as published in the original GCM proposalMike Belopuhov
to NIST (gcm-spec.pdf) and draft-mcgrew-gcm-test-01.txt.