There was an error while loading. Please reload this page.
1 parent 37d2b78 commit 7f0c8b7Copy full SHA for 7f0c8b7
1 file changed
.github/scripts/ci/run_unit_test.sh
@@ -102,16 +102,17 @@ run_device_api() {
102
103
run_suite() {
104
local suite_dir="$PROJECT_ROOT/test/unittest/$SUITE"
105
+ local -a args=("${FLAGCX_CI_TEST_MAKE_ARGS[@]}")
106
case "$SUITE" in
107
adaptor|core|p2p|service)
- make -C "$suite_dir" run-unit
108
+ make -C "$suite_dir" run-unit "${args[@]}"
109
;;
110
rma)
- make -C "$suite_dir" run-mpi
111
+ make -C "$suite_dir" run-mpi "${args[@]}"
112
113
runner)
114
: "${FLAGCX_CI_RUNNER_NP:?The platform set_env script must define FLAGCX_CI_RUNNER_NP}"
115
116
cd "$suite_dir"
117
mpirun -np "$FLAGCX_CI_RUNNER_NP" --allow-run-as-root \
118
./build/bin/runner_mpi_tests
0 commit comments