Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/ci/mtr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ REPO_ROOT="$(git rev-parse --show-toplevel)"
BUILD_DIR="${BUILD_DIR:-$REPO_ROOT/build}"
cd "$BUILD_DIR/mysql-test"

exec ./mtr "$@"
exec ./mtr

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This drops every argument supplied to the wrapper, despite the usage text promising that scripts/ci/mtr.sh --suite=innodb ... passes raw args to ./mtr. Any CI or developer invocation that selects suites, tests, or other MTR options will silently run the default selection instead. Please retain "$@" here.

Loading