- Sep 28, 2024
-
-
Robert Schmidt authored
The next commit will use "echo -e". The problem with that is that bash and sh differ: - in bash: this results in "a\nb" (a+newline+b) - in sh: this results in -e a\nb (-e a+newline+b) The problem is that by default, commands are executed through sh, which nobody expects. Change to bash, which is likely more aligned with what people want to use.
-
Robert Schmidt authored
Add some basic unit tests to verify that Iperf/Ping work. Harmonize the logging by only print in the "main" iperf/ping function, to avoid that if we test with multiple UEs, the output intermixes. Also, do one common mkdir before starting multiple pings/iperfs. Finally, harmonize the paths so that Iperf and Ping log their files in the same place.
-
- Mar 27, 2024
-
-
Jaroslava Fiedlerova authored
-
- Mar 05, 2024
-
-
Robert Schmidt authored
- Return code says if copying succeeded - Improve handling of the recursive code paths, which copy files or directories recursively into another directory - both for RemoteCmd/LocalCmd
-
-
- Jul 03, 2023
-
-
Robert Schmidt authored
-
- Apr 28, 2023
-
-
- Feb 23, 2023
-
-
Robert Schmidt authored
- allow executing in background - less logs - no use of split() - common implementation of legacy command()
-
- Feb 03, 2023
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- Jan 11, 2023
-
-
Robert Schmidt authored
-