summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Avoid failing if the directory already exists (when restarting at customize).n_hibma2008-10-091-1/+1
| | | | MFC after: 2 days
* Update udpzerobyte to understand that passing 0 as a length to recv(2)rwatson2008-10-071-5/+26
| | | | | | | | will cause it to return 0, not EAGAIN. Add UNIX domain socket support to udpzerobyte, which suggests this regression test should be moved to the general sockets test area rather than netinet.
* Add IPv6 support to zero-size UDP transmit/receive test.rwatson2008-10-071-27/+47
|
* Regression test for the loopback handling of zero-length UDP packets, whichrwatson2008-10-072-0/+111
| | | | should be delivered but without payload.
* Add very simple regression test for fstat(2) on sockets: make sure itrwatson2008-10-062-0/+80
| | | | | returns success for various socket types. It's easy to imagine this being enhanced to validate the returned data, but...
* In cust_install_files() we ignore CVS directories. In a similar way nowsimon2008-09-231-1/+1
| | | | also ignore .svn directories.
* - Change all "echo #..." into using a progress print function to make itsimon2008-09-231-41/+65
| | | | | | | | | | | possible to make NanoBSD output more quite or verbose. The default output should remain mostly unchanged. [1] - Add missing shift for -i. - Clean up usage() so it's now (mostly) sorted alphabetically. - Make command line argument handling more consistent in the code and remove redundant semicolons. Reviwed by: phk [1]
* add missing optionssam2008-09-232-0/+7
|
* add missing optionssam2008-09-232-0/+5
|
* * Add USB boot support.bms2008-09-221-5/+52
| | | | | | | | | | * Allow the image name to be renamed via NANO_IMGNAME. * Propagate TARGET_ARCH into src top level make targets explicitly to support cross-building. * Increase the default size of NanoBSD media from 488MB to 584MB to accomodate a -CURRENT world. Reviewed by: phk
* Mark the first slice of a NanoBSD image 'active' by default.bms2008-09-221-0/+4
| | | | | | | This fixes USB boot (not yet merged to HEAD) with 3 flavours of BIOS I've seen. Approved by: phk
* add new build knobs and jigger some existing controls to improvesam2008-09-2126-0/+99
| | | | | | | | control over the result of buildworld and installworld; this especially helps packaging systems such as nanobsd Reviewed by: various (posted to arch) MFC after: 1 month
* Include $NANO_NAME in the completed message. This is nice if you aresimon2008-09-211-1/+1
| | | | | building multiple NanoBSD images at once to keep track of what is running and what isn't.
* eliminate hardwired lists; use the media type to autoconfigsam2008-09-211-3/+17
|
* Add files to remove when WITHOUT_HESIOD is set.antoine2008-09-131-3/+7
| | | | | | | This fixes "make check-old" when WITH_HESIOD is set. PR: 122406 MFC after: 1 month
* o Correct a comment: a test file size is a four pages not three.maxim2008-09-101-1/+1
|
* Change space -> tab in printed usage output to make it look consistent.simon2008-09-071-1/+1
|
* Regression tests for bugs in gdtoa.das2008-09-031-11/+17
|
* Fix typo in comment.thomas2008-09-021-1/+1
|
* Add simple cd to dvd conversion script.rik2008-08-311-0/+267
|
* Update README to reflect removal of netatm/harp test parts some time ago.rwatson2008-08-311-5/+2
| | | | MFC after: 3 days
* Connect a forgotten test case to Makefile.jkim2008-08-291-1/+1
|
* Do not pass validatation level since all issues are fixed now.jkim2008-08-291-1/+1
|
* Merge local copy of bpf_validate() with bpf_filter.c.jkim2008-08-291-11/+14
|
* By default backup geli metadata to a file. It is quite critical 512 bytes,pjd2008-08-2915-17/+123
| | | | | | | | | | | | | | | | | | | | | | | once it is lost, all data is gone. Option '-B none' can by used to prevent backup. Option '-B path' can be used to backup metadata to a different file than the default, which is /var/backups/<prov>.eli. The 'geli init' command also prints backup file location and gives short procedure how to restore metadata. The 'geli setkey' command now warns that even after passphrase change or keys update there could be version of the master key encrypted with old keys/passphrase in the backup file. Add regression tests to verify that new functionality works as expected. Update other regression tests so they don't create backup files. Reviewed by: keramida, rink Dedicated to: a friend who lost 400GB of his live by accidentally overwritting geli metadata MFC after: 2 weeks
* Merge bpf_filter.c r182425 and add test cases for jump range checks.jkim2008-08-296-27/+137
| | | | While I am here, fix stupid typos in test0080.h and make it JIT compiler only.
* Move comments to the right places.jkim2008-08-281-5/+5
|
* Merge bpf_filter.c r182412 and remove additional local checks.jkim2008-08-282-53/+23
| | | | While I am here, use more realistic value for illegal code test case.
* Fix style consistencies and a comment.jkim2008-08-2880-449/+449
|
* Merge bpf_filter.c r182380 and remove additional local checksjkim2008-08-281-12/+4
| | | | for BPF_STX and BPF_LDX|BPF_MEM instructions.
* Add a test case for uninitialized scratch memory (for JIT compiler).jkim2008-08-282-2/+66
|
* Add a test for r182300.stefanf2008-08-272-0/+7
|
* Add a test case for null filter.jkim2008-08-263-11/+35
|
* Add more test cases for invalid instructions and add commentsjkim2008-08-267-9/+232
| | | | about bpf_validate(9) issues.
* Remove some hacks from regression test since bpf_filter.c builds fine now.jkim2008-08-262-9/+8
|
* Add a trivial bpf filter benchmark.jkim2008-08-252-5/+22
|
* Use sys/net/bpf_jitter.c instead of rolling our own versionjkim2008-08-252-10/+7
| | | | since it is compilable on user land now.
* Reflect sys/net/bpf_jitter.h changes to regression test.jkim2008-08-251-17/+7
|
* Increase cryptotest tool initialization vector (IV) size.raj2008-08-211-1/+1
| | | | | | | | This fixes potential out-of-bound accesses when testing ciphers with block size greater than 8 bytes (e.g. AES). Submitted by: Bartlomiej Sieka tur ! semihalf dot com Discussed with: pjd, sam
* Add test case for 'divide by 0' with BPF_ALU|BPF_DIV|BPF_X instruction.jkim2008-08-182-1/+34
|
* Fix two test cases on 32-bit architectures.jkim2008-08-182-2/+6
|
* Add simple bpf(9) regression tests and test cases.jkim2008-08-1876-0/+2739
|
* Accept tty[ud]0 for console devicephk2008-08-151-1/+1
|
* Use expr -e instead of expr to compute NANO_MEDIASIZE for Flash devicesantoine2008-08-121-5/+5
| | | | | | | | | | larger than 2GB to prevent an overflow [1]. Make case-insensitive comparison work for siliconsystems, soekris and transcend devices. PR: conf/126386 [1] Submitted by: Mark A [1] MFC after: 1 month
* fix syntaxsam2008-08-091-0/+1
|
* Add sbuf_new_auto as a shortcut for the very common case of creating ades2008-08-092-3/+3
| | | | | | | completely dynamic sbuf. Obtained from: Varnish MFC after: 2 weeks
* Add late customize hookphk2008-08-091-0/+25
| | | | | Submitted by: Patrick M. Hausen Sat on for far too long: phk
* Add -i option to supress image building.phk2008-08-091-2/+10
| | | | Submitted by: keramida
* Track /etc/ttys change to uart(4)phk2008-08-091-1/+1
|
* Test that the result is correctly rounded when |y/x| is huge.das2008-08-021-16/+9
|
OpenPOWER on IntegriCloud