Skip to content
Snippets Groups Projects
Commit 8c6a3953 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

launcher: move taskset in the main script instead of launch.py

taskset is kind of machine specific and also linux specific. Moving it to
the "main" script make it simpler to use launch.py in many context.

Ideally, ASV would deal with it itself when spawning process
parent 9618b8ac
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@
shell_exec(["./lib/before-check.sh"])
# ASV RUN
run_command = ["taskset", "-c", "2,3", "asv", "run"]
run_command = ["asv", "run"]
# Force ASV to spawn a separate process per test, so it kills childrens
# when the test timeout. In the fork_server mode (the default), it kill
......
......@@ -13,7 +13,7 @@
shift
fi
"${ROOT}"/launch.py "$target" -s 10 "$@"
taskset -c 2,3 "${ROOT}"/launch.py "$target" -s 10 "$@"
# Sync results over to deploy server
"${ROOT}/sync_results.sh"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment