Commit Graph

11 Commits

Author SHA1 Message Date
Robin Müller 39b7976056 new cmake options for CICD build 2022-05-09 15:26:38 +02:00
Robin Müller 22bc300902 increase other limits 2022-02-14 16:14:14 +01:00
Robin Müller 0d38ac62d8 this should work an ALL systems 2022-02-14 16:12:48 +01:00
Robin Müller d53c7e1190 increase test limit 2022-02-14 16:00:43 +01:00
Robin Müller 4f87e24f60
increase test limit 2022-02-10 14:08:52 +01:00
Robin Müller ddcac2bbac
reapply clang format 2022-02-02 10:29:30 +01:00
Robin Müller e0c50477cb
it actually was an uninitialized array 2022-02-02 10:00:57 +01:00
Robin Müller acbc2cd749
valgrind why 2022-02-01 18:04:08 +01:00
Robin Müller 368481f88b
move strcmp outside of macro 2022-02-01 14:04:13 +01:00
Robin Müller d2b561ba2f
test 2022-02-01 13:57:27 +01:00
Robin Müller 371ff931bf
Linux CommandExecutor
The CommandExecutor helper class can execute shell commands in blocking and non-blocking mode
This class is able to execute processes by using the Linux popen call. It also has the capability of writing
the read output of a process into a provided ring buffer.

The executor works by first loading the command which should be executed and specifying whether
it should be executed blocking or non-blocking. After that, execution can be started with the execute call.

Using non-blocking mode allows to execute commands which might take a longer time in the background,
and allowing the user thread to check completion status with the check function

Moved to HAL like requested in code review and unit tested with failing commands as well.
Also, Linux HAL components are compiled by default now unless explicitely disabled.
2022-01-26 12:11:52 +01:00