summaryrefslogtreecommitdiffstats
path: root/testsuite (follow)
Commit message (Collapse)AuthorAgeFilesLines
* testsuite: Add a VME testChristian Mauderer2024-01-311-0/+80
| | | | | Note: This test currently only works with a board with a Tsi148 like the MVME2500. For other boards it will print only a message.
* testsuite/nfs: Check the path returned by getcwdChris Johns2023-08-061-6/+13
|
* syscall/open: Reference the path info directory vnodeChris Johns2023-07-211-28/+53
| | | | | | | | | The kernel open call requires a path so to open a file we need to set the current directory to the parent vnode. If the open mode is create the path info vnode is the directory to perform the open create in. Using the parent node creates the file in wrong path. Updates #4723
* nfs01: Fix warningsSebastian Huber2022-06-101-2/+4
|
* Use rtems_task_exit()Sebastian Huber2022-06-0112-30/+18
|
* dhcpcd01/dhcpcd02: Mark as interactiveSebastian Huber2022-05-132-5/+5
|
* tcpdump01: New testSebastian Huber2022-05-121-0/+292
| | | | Update #4650.
* pf02: Fix shell envirionment initializationSebastian Huber2022-05-111-3/+2
| | | | Update #4654.
* libbsd: Add TFTP filesystem to test media01Frank Kühndel2022-04-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | How test media01 can be executed is described in section *Qemu and Networking* of the README.md at the top of the rtems-libbsd GIT repository. When connected via `telnet` with the RTEMS shell of the media01.exe test executed by QEMU, one can list the filesystems available for mounting: TLNT [/] # mount -L File systems: / dosfs tftpfs The list will contain `tftpfs`. The filesystem can be mounted as in the following example: TLNT [/] # mkdir /tftp TLNT [/] # mount -t tftpfs -o verbose "" /tftp A TFTP server is needed to use this filesystem. The simplest way would be to run such a server on the host machine and open the firewall for the TFTP protocol (port 69) on the TAP device used. Files can then be downloaded using the usual shell commands as in the following example: TLNT [/] # cat /tftp/169.254.1.1:hello.txt Uploading is also possible provided the TFTP server supports it, for example: TLNT [/] # cp /etc/dhcpcd.duid /tftp/169.254.1.1:myfile
* if_xae: Port to RTEMSAlex White2022-03-071-0/+2
|
* openssl02: Add missing includeSebastian Huber2022-02-151-0/+2
|
* rtemsbsd/syscalls: Remove pipe()Chris Johns2021-09-231-155/+0
| | | | | | - This call is provided by RTEMS and that is preferred Closes #4518
* rtemsbsd/open: Correctly open a mount directoryChris Johns2021-09-231-0/+5
| | | | | - If the open is for a directory and it is the root of the mounted file system open from the pseudo's root node.
* rtemsbsd/nfs: Add support to mount NFSv2Chris Johns2021-09-021-1/+4
| | | | | | | | | - NFSv2 requires userland RPC calls to determine the version of NFS and the FH. This is passed to the kernel. - Port more libc/rpc. Update #4475
* kern/sys: Add NFSv4 clientChris Johns2021-08-312-7/+336
| | | | Update #4475
* sys/kern: Add VFS supportChris Johns2021-08-285-13/+32
| | | | | | | | | | - Refactor the libio interface - Move syscalls into an rtemsbsd location - Provide a root directory mount point Update #4475
* testsuite: Optionally allow all command in a shellChris Johns2021-08-281-0/+2
| | | | Update #4475
* testsuite: Wait for the link to be UPChris Johns2021-08-274-0/+59
| | | | | | | | - Wait for a slow PHY to bring the link UP. If the IP address is static the test can start before the link is up and the test fails. - Make 2 tests wait. Others will need to be added.
* rtemsbsd: Present all ZynqMP interfaces by defaultKinsey Moore2021-07-151-8/+0
| | | | | Now that the issue with false PHY detection on unterminated MII busses has been resolved, present all hardware interfaces for use on ZynqMP.
* rtemsbsd: Use config.inc to control ZynqMP ethernetKinsey Moore2021-07-011-0/+8
| | | | | | | This alters the selection of the 4 Cadence GEM interfaces on the Zynq Ultrascale+ MPSoC BSP to be provided by config.inc instead of being provided by options in the RTEMS BSP itself since those options appear to be dead code when not used in conjunction with LibBSD.
* rtemsbsd: Added a test for the TTCP command.Stephen Clark2021-06-292-0/+62
| | | | | | Added a new test for the TTCP command. Modified default-network-init.h to conditionally build the shell with TTCP. Modified libbsd.py to build the new TTCP test.
* testsuite/media01: Add pattern testChristian Mauderer2021-04-013-1/+385
| | | | Update #4372
* testsuite/media01: Enable md5 commandChristian Mauderer2021-04-011-0/+1
| | | | Update #4372
* mcast01: Fix write to read-only stringSebastian Huber2020-10-271-2/+3
|
* mcast01: Add test programSebastian Huber2020-09-101-0/+285
|
* ifmcstat: Port to RTEMSSebastian Huber2020-09-071-0/+1
|
* telnet: Use rtems_shell_dup_current_env()Sebastian Huber2020-08-066-6/+6
| | | | Update #3859.
* testsuite: Use new name of test-info.h.Christian Mauderer2020-07-3112-13/+13
| | | | | In RTEMS the test.h has been renamed to test-info.h to allow the new test framework to take over.
* Fix linker errors with minimal build setSebastian Huber2020-07-081-0/+4
|
* mDNSResponder: Port to RTEMSSebastian Huber2020-06-231-1/+1
| | | | Update #4010.
* epoch01: Fix sporadic test failuresSebastian Huber2020-06-231-0/+4
|
* testsuite: A description for each test addedMoyano, Gabriel2020-04-0955-55/+413
|
* testsuite: CONFIGURE_MAXIMUM_FILE_DESCRIPTORSSebastian Huber2020-04-0310-10/+10
|
* testsuite: User input define addedMoyano, Gabriel2020-03-3119-5/+24
|
* testsuite: Using RTEMS tester functions at beginning and at the end of testsMoyano, Gabriel2020-03-3111-17/+39
| | | | puts() was replaced with rtems_test_begin() and rtems_test_end()
* epoch01: Update due to API changesSebastian Huber2020-02-101-16/+16
| | | | Update #3815.
* syscalls01: Fix sporadic test failuresSebastian Huber2020-02-101-0/+6
|
* SOCKATMARK(3): Import from FreeBSDSebastian Huber2019-12-191-0/+30
| | | | Close #3798.
* Fix warningsSebastian Huber2019-09-256-11/+15
|
* Compatibility for next Newlib updateSebastian Huber2019-09-251-0/+5
|
* Add pselect()Sebastian Huber2019-09-232-1/+137
|
* test/syscalls01: Fix sporadic test failuresSebastian Huber2019-09-231-0/+32
|
* CONFIG_INTRHOOK(9): Call handlers after bootSebastian Huber2019-09-231-4/+30
| | | | | This enables adding drivers on demand which use this service after initialization.
* Add wrapper for strndup()Sebastian Huber2019-09-111-6/+24
|
* media01: Reduce record item countSebastian Huber2019-08-271-1/+1
|
* media01: Enable event recordingSebastian Huber2019-08-261-0/+8
|
* EPOCH(9): Add epoch_drain_callbacks()Sebastian Huber2019-07-091-0/+50
|
* test/epoch01: SimplifySebastian Huber2019-07-091-48/+36
|
* test/commands01: Fix sporadic test failuresSebastian Huber2019-06-261-1/+29
|
* test/program01: Fix sporadic test failuresSebastian Huber2019-06-261-0/+8
|