From c6d12a8db478ff5ba729bfb8baaf7e13ac87079c Mon Sep 17 00:00:00 2001 From: Nicolas Ducarton <nicolas.ducarton@inria.fr> Date: Thu, 21 Nov 2024 17:28:23 +0100 Subject: [PATCH] added help info --- .gitignore | 5 +++++ launch-test.sh | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b72f9be..8b31874 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,7 @@ *~ +*.un~ *.swp +docker_results/ +mpi5x/ +run.sh +test_sc.sh diff --git a/launch-test.sh b/launch-test.sh index e98b735..75d387d 100755 --- a/launch-test.sh +++ b/launch-test.sh @@ -11,7 +11,9 @@ HELP (){ echo "\t help: print this"; echo "\t check: build starpu and run tests"; echo "\t build: only build starpu"; - echo "\t run : run [type] located at [path] (they must be provided)"; + echo "\t run <type> <path> [program] [interactive=no]: run type (script) located at path inside the container"; + echo "\t if a path is provided as [program], it is first copied to the container, then the script is executed"; + echo "\t this script then expects a \"test\" file to exist inside the container, and will launch it with or without gdb depending on the interactive option (no/yes)"; echo "\t\t type : script or (test (TODO))"; echo "\t\t path : path to script (or test name (TODO))"; echo "\t TODO gdb interactive guest_script/host_script"; -- GitLab