summaryrefslogtreecommitdiffstats
path: root/testsuite (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add a RTEMS Debugger TCP remote transport.Chris Johns2016-11-291-0/+71
| | | | | | | The patch also adds support to libbsd's build system making source conditional on a configure check. The debugger support is not available on all architectures and this feature lets us test if is avaliable.
* Fix default network memory configurationSebastian Huber2016-11-102-4/+7
|
* Modify rtems_bsd_set_vprintf_handler()Sebastian Huber2016-11-091-1/+3
| | | | Return previous vprintf()-handler in rtems_bsd_set_vprintf_handler().
* testsuite: Fix warningsSebastian Huber2016-10-075-5/+3
|
* usb01: Simplify test programSebastian Huber2016-09-288-1072/+124
|
* devfs: Create path.Christian Mauderer2016-08-161-4/+11
|
* pf: Add configuration via rc.conf.Christian Mauderer2016-08-081-1/+42
|
* testsuite/pf01: Remove pflog-module from test.Christian Mauderer2016-08-081-1/+0
| | | | | This module is not tested inside the pf01 test. Therefore remove it. It is still build in the interactive pf02 test.
* pf: Add RTEMS_BSD_CONFIG_FIREWALL_xxx options.Christian Mauderer2016-08-082-4/+4
|
* testsuite/pf02: Add interactive pf test.Christian Mauderer2016-08-031-0/+196
|
* testsuite/pf01: Test pfctl and pf.Christian Mauderer2016-08-021-0/+450
|
* rtemsbsd: Add wrapper for open, fopen, malloc, ...Christian Mauderer2016-08-021-0/+235
| | | | | | | | | | | | | | | | | Add the following rtems_bsd_program_... wrapper: * rtems_bsd_program_open * rtems_bsd_program_socket * rtems_bsd_program_close * rtems_bsd_program_fopen * rtems_bsd_program_fclose * rtems_bsd_program_malloc * rtems_bsd_program_calloc * rtems_bsd_program_realloc * rtems_bsd_program_free * rtems_bsd_program_strdup * rtems_bsd_program_vasprintf * rtems_bsd_program_asprintf
* rtemsbsd: Add call to program with a data restoreChristian Mauderer2016-08-021-0/+34
| | | | This adds the rtems_bsd_program_call_main_width_data_restore function.
* testsuite/syscalls01: Split out program01 part.Christian Mauderer2016-08-022-194/+318
| | | | | | This allows to use normal functions for sockets and similar while allowing to test the upcoming rtems_bsd_program_opan/close/... for the program part.
* testsuite/pf01: Add test that links PF.Christian Mauderer2016-08-011-0/+47
|
* testsuite/cdev01: Add test for cdev functions.Christian Mauderer2016-08-013-0/+352
|
* Set syslog priority to 'debug' for all tests.Chris Johns2016-07-062-0/+10
|
* Add a wait for key press to test rccof02.Chris Johns2016-07-011-11/+32
|
* Add telnetd as service to rc.conf.Chris Johns2016-07-011-15/+7
|
* Add RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE.Chris Johns2016-06-303-17/+10
| | | | | The domain allocator page abd mbuf size can be configured by the user using RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE.
* Add DHCP support to rc.conf.Chris Johns2016-06-301-19/+56
|
* Add ftpd as a service. Add rtems-bsd-config.h for app libbsd set up.Chris Johns2016-06-282-20/+43
|
* Add a services base test.Chris Johns2016-06-271-0/+167
|
* Refactor rc.conf processing to be services based.Chris Johns2016-06-271-30/+128
|
* Add DEFAULT_NETWORK_PAGE_MBUFS_SIZE to allow per BSP allocation domain sizes.Chris Johns2016-06-273-0/+15
|
* Update due to RTEMS printer API changesSebastian Huber2016-06-231-0/+1
|
* Update due to RTEMS printer API changesSebastian Huber2016-06-232-0/+2
|
* nfsclient: Port to LibBSDSebastian Huber2016-06-101-0/+69
|
* ftpfs: Import from RTEMSSebastian Huber2016-06-101-0/+265
| | | | RTEMS Git commit 251c94d3d3d27e0039f01b718e5c2eb06f39fdf7.
* selectpollkqueue01: Add EVFILT_USER test caseSebastian Huber2016-06-101-0/+49
|
* tests: Fix compile errors after tools upgrade.Chris Johns2016-05-312-0/+2
|
* Directly use <sys/types.h> provided by NewlibSebastian Huber2016-05-307-7/+7
|
* testsuite/rcconf01: Add missing includeSebastian Huber2016-05-301-0/+1
|
* testsuite: Update due to API changesSebastian Huber2016-05-252-6/+9
|
* Add support for rc.conf(5) initialisation.Chris Johns2016-05-181-0/+164
| | | | | | | | | | | | | | | | | | | | | | | | Provide user support for rc.conf(5) so a user can create a suitable /etc/rc.conf file to initialise libbsd. This patch by default adds basic networking support: cloned_interfaces ifconfig_'interface' defaultrouter hostname Refer to FreeBSD documentation for examples. Users can make a single call to have /etc/rc.conf processed, or pass a file name to a specific configuration file or a text string with line feeds can be passed to the scripting version of the interface. The rc.conf support is implemented in terms of directive handlers that are called based on a regular expression. The design allows new handlers to be added as needed. Line concatenation is still to be implemented.
* media01: Add sysctl commandSebastian Huber2016-05-061-0/+1
|
* kvprintf: Add support for %mSebastian Huber2016-05-061-0/+6
|
* subr_prf.c: Port to RTEMSSebastian Huber2016-05-061-0/+144
|
* Partially revert 27aedffc1bd8e41f4e06a3326a5b95c54ca38b79Sebastian Huber2016-05-061-1/+1
|
* Add sbin/sysctlChris Johns2016-05-061-1/+2
|
* default-network-init.h: Fix warningsSebastian Huber2016-05-041-2/+7
|
* Add tcpdump to the test shell commands.Chris Johns2016-05-041-1/+2
|
* Add nexus devices for default-init.Chris Johns2016-04-281-0/+2
|
* media01: Add telnetdSebastian Huber2016-04-261-1/+33
|
* swi01: Move include to avoid type conflictSebastian Huber2016-04-181-2/+2
|
* SOCKETPAIR(2): Port to RTEMSSebastian Huber2015-11-161-0/+48
|
* testsuite/ppp01: Avoid build error on SMPSebastian Huber2015-11-121-0/+13
|
* testsuite: Add bdbuf configurationSebastian Huber2015-11-022-0/+8
|
* media01: Add mount etc. commandsSebastian Huber2015-11-021-0/+3
|
* tests: Increase stack size for dhcpcdSebastian Huber2015-09-301-1/+1
| | | | | On i386 with optimization disabled the minimum stack size was not enough.