rwatson
2db191c4fe
Add a small regression test that opens a TCP socket, listens on it,
...
performs a non-blocking connect from another socket, and then closes
the listen socket rather than accepting. This is intended to
exercise the close path in which connections are aborted due to a
close on the listen socket while the connection is in the listen
queue.
2004-11-02 17:59:12 +00:00
ru
5db2b9d5b3
For variables that are only checked with defined(), don't provide
...
any fake value.
2004-10-24 15:33:08 +00:00
rwatson
8ad3de471d
Use errx() instead of fprintf()/exit() for conciseness.
...
Suggested by: ru (some time ago)
2004-10-23 22:18:37 +00:00
rwatson
e5417785bf
Use errx() instead of perror()/exit() for conciseness.
...
Suggested by: ru (some time ago)
2004-10-23 22:11:35 +00:00
ru
8cebff99b3
Add a regression test for the alternate shell specification.
2004-10-23 21:38:58 +00:00
ru
d399f4ecf4
Fixed a typo.
...
Submitted by: Pawel Worach
2004-10-17 11:07:03 +00:00
keramida
2eb8bfd316
Add a regression test for floating-point output in the Greek locale.
...
See revision 1.3 of src/share/numericdef/el_GR.ISO8859-7.src
Reviewed by: das (a while ago)
2004-10-13 22:32:12 +00:00
rwatson
bcc7e348ba
Resort unprivileged uid with privileged socket after unprivileged uid
...
with privileged socket in test runs.
If running unprivileged and instructed to use unprivileged sockets,
don't try and use raw sockets.
2004-10-11 19:12:40 +00:00
rwatson
4040b36fa7
A number of improvements to the IP socket option API regression test:
...
- Consistently use err/errx/warnx throughout, rather than using perror()
and exit().
- Teach the tests how to better manage (and therefore test) privilege:
in particular, how to create sockes with root credentials but exercise
the privileges with non-root credentials, etc.
- Teach the test suite to apply each of the non-IP_HDRINCL options across
each of SOCK_DGRAM, SOCK_STREAM, and SOCK_RAW.
2004-10-11 19:03:53 +00:00
stefanf
d9abb42b26
Add regression tests for ilogb{,f,l}().
2004-10-11 18:40:45 +00:00
rwatson
8e1f60d994
Add a simple exercise suite for IP-level socket options. The suite
...
atempts to read and write various IP-level socket options as root and
nobody, making sure the initial values are as expected, that they can
be changed to valid values and take effect, etc. No attempt is made
to check for the correct implementation of side effects (such as
changes in packet headers) as yet.
The IP options section is currently broken but will be fixed shortly.
Not all multicast options are currently tested.
2004-10-11 16:09:45 +00:00
rwatson
e6a8dc9c17
Add a simple C-based TCP connection generator, which generates and
...
closes the specified number of TCP connections sequentially and
synchronously. Useful for trying to trigger races in the accept
code.
2004-10-09 20:58:28 +00:00
rwatson
1991acc23e
Modify accept_fd_leak regression test to generate "PASS" output, not
...
just "FAIL" output, in order to make it consistent with other tests in
the regression test tree.
2004-09-18 13:06:00 +00:00
rwatson
a18be84c1f
Add a very basic README for tcpstream.
2004-09-13 16:53:40 +00:00
rwatson
ed6044d475
Add tcpstream, a simple TCP stream generator that uses a pseudo-random
...
sequence to detect data corruption visible to an application.
2004-09-13 03:17:22 +00:00
stefanf
6d0c938ba1
Add a regression test for <tgmath.h>.
2004-09-04 11:34:53 +00:00
ru
083ce78d85
Join the effort in simplifying this makefile. ;)
2004-09-03 06:18:52 +00:00
rwatson
621b91453c
Pass O_NONBLOCK directly to fcntl() rather than the pointer to an int
...
holding the value O_NONBLOCK. This worked previously because I was
lucky.
2004-09-02 21:41:57 +00:00
rwatson
b9685c935d
Don't override the rule used to build a binary by providing our own
...
compiler line.
2004-09-02 21:37:50 +00:00
rwatson
a52ebd899d
Make sure to properly initialize 'size' to sizeof(sin) before passing
...
it into accept(). Depending on the initial value in memory, it is
otherwise possible to get EINVAL.
2004-08-24 04:59:26 +00:00
rwatson
45da4deacb
Add a basic kqueue + UNIX domain socket pair regression test to do some
...
elementary exercising of kqueues on datagram and stream sockets. Note
that the datagram write kqueue case is left untested due to potentially
confusing behavior for the developer (me) that might require attention.
2004-08-24 04:02:41 +00:00
pjd
9602bb2cd9
Regression tests for 'verify reading' algorithm.
2004-08-22 16:26:09 +00:00
pjd
6ac179d92c
Add regression test for the new "round-robin reading" feature.
2004-08-21 18:14:55 +00:00
dfr
597fea43c0
Remove some debug cruft from the Makefiles and make them ${.OBJDIR}
...
friendly.
2004-08-16 09:35:49 +00:00
pjd
b636607ce6
Add regression tests for GEOM_RAID3.
2004-08-16 09:09:23 +00:00
ru
cfe021dc2b
Replaced COPTS by equivalent CFLAGS.
2004-08-13 14:21:49 +00:00
fjoe
520f0cfead
Regen.
2004-08-13 09:56:22 +00:00
fjoe
4cdbb4e4ad
Regression test for geom_uzip.
2004-08-13 09:53:52 +00:00
harti
d04c2b4f9d
Add a regression test for the ATM call control stuff.
2004-08-13 09:27:21 +00:00
harti
883c945b5c
Now that make more correctly handles variable assignments
...
in .MAKEFLAGS targets enable the regression test for this.
2004-08-12 19:14:10 +00:00
dds
145dad6e9d
Per letter dated July 22, 1999 remove 3rd clause of Berkeley derived
...
software (original contributor).
Reviewed by: imp
2004-08-09 15:29:41 +00:00
harti
f2baa8f5ba
Back out something I'm working on that crept in with the last commit.
...
Spotted by: ru
2004-08-05 09:11:44 +00:00
harti
679c187578
Remove extra spaces. Remove double quotes around error messages -
...
they are not needed and will actually be printed.
Submitted by: ru
2004-08-05 08:44:00 +00:00
dfr
8f4eb605aa
This file is not suppose be be all one big comment :-(
...
Pointed out by: ssouhlal
2004-08-05 08:07:40 +00:00
harti
c6e3261d2f
Add another test that checks for a working '+' command flag.
2004-08-05 07:24:06 +00:00
pjd
be8c86ce12
Add regression test for "prefer" balance algorithm in MIRROR class.
2004-08-04 12:18:42 +00:00
harti
310a4a288d
Add a regression test for the passing of command line
...
variable assignments via the MAKEFLAGS environment variable.
2004-08-04 07:40:58 +00:00
rwatson
83a61f757e
Add minimal socketpair() regression test to confirm that we can create
...
(and close) PF_UNIX socket pairs, and that we can't create PF_INET
socket pairs. More tests to follow.
2004-08-04 03:46:35 +00:00
dfr
c5d9c3618e
Add regression tests for TLS.
2004-08-03 09:04:01 +00:00
pjd
adaa0482b4
Add GEOM_MIRROR class which provide RAID1 functionality and has many useful
...
features. The gmirror(8) utility should be used for control of this class.
There is no manual page yet, but I'm working on it with keramida@.
Many useful tests provided by: simon (thank you!)
Some ideas from: scottl, simon, phk
2004-07-30 23:13:45 +00:00
jkh
b050f5c62b
After conferring with Apple legal, update the license of this to APSL 2.0
...
and change the URL link to point to the appropriate license text.
2004-07-27 20:01:43 +00:00
pjd
3a2f13d5f5
Change naming scheme from /dev/<name>.stripe to /dev/stripe/<name>.
2004-07-26 16:10:27 +00:00
pjd
badd010cc7
Change naming scheme from /dev/<name>.concat to /dev/concat/<name>.
2004-07-26 16:08:32 +00:00
rwatson
c5b9f7aaed
Simple attachment regression test to attach the "accf_data" accept
...
filter to an inet socket and check at various points during the socket
life cycle that the filter can or cannot be attached, and that once
attached that the right one is attached and that it can be queried.
2004-07-26 03:53:47 +00:00
silby
c7a11c5dc2
Add two more programs useful for testing the correctness of pipes.
2004-07-22 02:46:25 +00:00
tjr
397b943e7a
Add test programs for mbsnrtowcs() and wcsnrtombs().
2004-07-21 13:47:48 +00:00
silby
d38e57366f
Make this test compile again and remove its dependency on sys/pipe.h.
2004-07-21 03:13:53 +00:00
silby
da5b50a882
Add a simple regression test for the stat st_size bug just fixed in
...
sys_pipe.c
2004-07-20 07:17:19 +00:00
tjr
d3949c6f08
Add a skeleton makefile that runs the tests out of libc/regex/grot.
2004-07-19 09:00:26 +00:00
tjr
c977042a24
Oops, test error behaviour of wctrans(), not wctype().
2004-07-19 08:53:41 +00:00