summaryrefslogtreecommitdiffstats
path: root/tester/rtems (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tester/sis: Use the RTEMS SIS commandChris Johns2023-08-212-5/+3
| | | | | | | Make sis and sis-run the same as there is no SIS support in gdb anymore. Closes #4945
* tester/bsps: change stm32h7-stlink to handle SIGTRAP as a nostopKarel Gardas2023-03-271-0/+1
| | | | | | | | | | | | | The ST-Link GDB server throws spurious SIGTRAP into the GDB sometimes. When this happen, the gdb exits immediately as it's run in batch/script manner. Unfortunately this may be while testcase itself is still running and does not have enough time to print all the required output. Such testcase is then marked as failed although otherwise it may run well to its end. Adding handle of SIGTRAP as a nostop means that GDB will not exit after receiving SIGTRAP but rather be forced to continue as nothing would happen and the running testcase will have a chance to finish its business.
* RISC-V: Test rv32i and rv32imafdc on QEMUHesham Almatary2023-02-082-0/+74
| | | | Updates #4775
* RISC-V Default rv64* BSPs to medany and 0x80000000 start addressHesham Almatary2023-02-088-121/+7
| | | | | | To run on both QEMU and Spike Updates #4775
* tester: Load RISC-V image using -bios and increase memory sizeDaniel Cederman2022-08-192-2/+4
| | | | | This avoids overlapping the RTEMS image with the builtin opensbi image and the location of the fdt.
* tester: Add option to specify how to load image with QEMUDaniel Cederman2022-08-191-1/+4
| | | | Defaults to "-kernel", but can be changed to, for example, "-bios".
* tester: Make the SIS time limit user configurableChris Johns2022-07-0610-26/+89
| | | | | | Let the user set the test time limit in a config file to provide site specific overrides. Optimisation can effect the time a test may take to run.
* tester/bsps: add stm32h7-stlink family configurationKarel Gardas2022-05-301-0/+43
| | | | Sponsored-By: Precidata
* tester: Fix target_start_regexSebastian Huber2022-01-144-4/+4
| | | | | It seems that the text used match with the regular expression does not start with a line in general.
* tester: Fix target_start_regexSebastian Huber2022-01-134-4/+4
|
* tester: Add realview_pbx_a9_qemu_smp configurationSebastian Huber2021-10-131-0/+38
| | | | | Add a configuration for the arm/realview_pbx_a9_qemu BSP to run the tests if it was built with SMP support enabled.
* tester/mvme2307: Add support for the MVME2307 (MVME2700) BSPChris Johns2021-09-211-0/+59
| | | | - Assumes a stand alone TFTP server
* tester/wait: Add a wait directive to the testerChris Johns2021-09-211-0/+54
| | | | - Lets you test with stand alone TFTP or other services
* tester/tftp: Fix recovery of timed out TFTP sessionsChris Johns2021-09-191-0/+1
| | | | | | | | - Add support to retry the tftp session if the target has not started - Add target handlers for the test directives to allow recovery on error
* tester: Add MicroBlaze KCU105 QEMU BSPAlex White2021-09-142-1/+42
|
* tester/zynqmp: Simpify the reasons to resetChris Johns2021-09-092-2/+3
| | | | - Only reset if the bootloader error is hardware related.
* tester/zynqmp: Limit the restarts to 3Chris Johns2021-09-091-0/+1
|
* tester: Add Versal VCK190 eval board TFTP supportChris Johns2021-09-031-0/+43
|
* tester: Add zu3eg test configsKinsey Moore2021-06-292-0/+82
| | | | Add tester configurations for ILP32 and LP64 on hardware.
* tester: add xilinx_versal_lp64_qemuGedare Bloom2021-06-221-0/+38
|
* tester: Add a72_lp64_qemu.iniGedare Bloom2021-06-091-0/+38
|
* coverage/symbol-sets.ini : Add libuuidAlex White2021-04-281-2/+2
|
* coverage/symbol-sets.ini : Add libtraceAlex White2021-03-301-1/+2
|
* tester: Add coverage variants for a few BSPsAlex White2021-03-304-0/+161
| | | | | Adds coverage variants for the following BSPs: a53_qemu, pc686, xilinx_zynq_a9_qemu, and xilinx_zynqmp.
* tester: Remove target from BSP coverage configsAlex White2021-03-303-3/+0
|
* tester: Update to support new build systemAlex White2021-03-301-45/+46
| | | | | | The tester configurations had not been updated to match the paths and conventions used by the new build system. These have been updated, and a few more libraries have been enabled in symbol-sets.ini.
* bsps/sparc: Remove INI files using SIS in GDBRyan Long2021-03-233-123/+0
| | | | | | | | Removed the INI files that use the "target sim" option since the SIS sparc simulator in GDB is no longer used with RTEMS. A newer version of SIS is built separately. Closes #4355
* tester: Update for ZynqMP QEMU BSP name changeKinsey Moore2021-03-052-6/+6
| | | | | The ZynqMP QEMU BSPs were renamed to include _qemu for more consistent identification. This updates the tester configurations to match.
* tester: Swap Xilinx ZynqMP BSPs to secondary UARTKinsey Moore2021-01-142-2/+2
| | | | | | | Qemu's machine definition uses the second UART in the memory map as the primary UART. This follows from the hardware itself where the second UART in the memory map is UART 0. This switches the tester to using the correct UART.
* tester: Add support for arm/fvp_cortex_r52 BSPSebastian Huber2020-12-163-0/+114
| | | | Update #4202.
* tester: Add configs for AArch64 ZynqMP BSPsKinsey Moore2020-12-112-0/+76
|
* tester: Add support for sparc/gr740 BSPSebastian Huber2020-12-021-0/+38
| | | | Update #4195.
* bsps/a53_*: Fix typo in qemu optionsVijay Kumar Banerjee2020-11-152-2/+2
|
* tester: Add a53_ilp32_qemu.iniKinsey Moore2020-10-051-0/+38
|
* tester: Add a53_lp64_qemu.iniKinsey Moore2020-10-051-0/+38
|
* tester: Add support for test-too-longChris Johns2020-09-081-1/+2
| | | | | - A test that loops generating output did not timeout. Monitor the the session time and set a maximum test period.
* Change version to RTEMS 6Sebastian Huber2020-06-301-1/+1
| | | | Update #4020.
* rtems-tester: Add rv64imafdc_medany for QEMUHesham Almatary2020-04-091-0/+36
|
* bsps: Deletes erc32-run.iniCláudio Maia2020-04-051-38/+0
|
* tester: Add configuration pc-qemu.iniJan Sommer2020-04-031-0/+39
|
* gdbarmsim: Remove all variantsJoel Sherrill2020-03-2010-400/+0
| | | | Updates #3911.
* psim-device-tree: Rework so devices do not conflict with 256MB RAMJoel Sherrill2020-03-051-18/+18
| | | | closes #3849.
* tester: Add qemu_opts_serialSebastian Huber2020-02-257-8/+9
| | | | | | The realview_pbx_a9_qemu test configuration for Qemu produced no output due to wrong serial/monitor settings. Remove the serial/monitor settings from qemu_opts_base and move them to the new qemu_opts_serial.
* tester: Add raspberrypi2 BSP.Chris Johns2019-07-261-0/+43
|
* testing/bsps: Add covoar commands in bsp ini fileVijay Kumar Banerjee2019-02-192-6/+8
|
* Coverage: Add support for TSIM formatVijay Kumar Banerjee2019-02-142-5/+11
|
* Coverage : Add coverage support for RISCVVijay Kumar Banerjee2019-02-121-0/+40
|
* tester: Ignore the execute return code for some commandsChris Johns2019-02-081-5/+6
| | | | | Some simulators like psim-run return a non-zero error code. Allow a BSP configuration to ignore the return code.
* tester: Increase the psim memory size to match the BSP.Chris Johns2019-02-081-1/+1
|
* rtems-test: add bsp for leon3 on sis with coverageJiri Gaisler2019-01-251-0/+39
|