-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeeper_validate_scx_flow.sh
More file actions
executable file
·44 lines (34 loc) · 1.13 KB
/
Copy pathkeeper_validate_scx_flow.sh
File metadata and controls
executable file
·44 lines (34 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
SUDO_BIN="${SUDO_BIN:-sudo}"
run_step() {
local title="$1"
shift
printf '\n========================================\n'
printf '%s\n' "$title"
printf '========================================\n'
"$@"
}
cd "$ROOT_DIR"
run_step \
"Burst strict validation" \
"$SUDO_BIN" ./burst_benchmarker.sh --strict --runs 2 \
--schedulers "baseline scx_cosmos scx_pandemonium scx_flow"
run_step \
"Mixed-workload validation" \
"$SUDO_BIN" ./mixed_benchmarker.sh \
--schedulers "scx_cosmos scx_pandemonium scx_flow"
run_step \
"Deadline validation" \
"$SUDO_BIN" ./deadline_benchmarker.sh --runs 2 \
--schedulers "baseline scx_cosmos scx_pandemonium scx_flow"
run_step \
"Longrun validation" \
"$SUDO_BIN" ./longrun_benchmarker.sh \
--schedulers "scx_cosmos scx_pandemonium scx_flow"
run_step \
"Fork/thread validation" \
"$SUDO_BIN" ./fork_thread_benchmarker.sh \
--schedulers "baseline scx_cosmos scx_pandemonium scx_flow"
printf '\nKeeper validation bundle completed.\n'