Skip to content

Commit 32ff25d

Browse files
committed
fix(mpm): Output SKIP_TESTS warning to stderr
1 parent a2e97ee commit 32ff25d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils/mpm/tests/run-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ get_test_files() {
107107
fi
108108
# Skip if test is in SKIP_TESTS list
109109
if [[ -n "$skip_list" ]] && [[ ",$skip_list," == *",$test_name,"* ]]; then
110-
log_warn "Skipping $test_name (in SKIP_TESTS)"
110+
echo -e "${YELLOW}[WARN]${NC} Skipping $test_name (in SKIP_TESTS)" >&2
111111
continue
112112
fi
113113
files+=("$f")

0 commit comments

Comments
 (0)