Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: only test gdb extension on stable/testing{,-devel} #3296

Merged
merged 1 commit into from
Dec 4, 2024
Merged
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
9 changes: 4 additions & 5 deletions tests/kola/extensions/package
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ set -xeuo pipefail
. "$KOLA_EXT_DATA/commonlib.sh"

commands=(
'gdb'
'htop'
'strace'
'tcpdump'
Expand All @@ -29,11 +28,11 @@ commands=(
# rebases early to the next major Fedora and the other streams operate
# continuously on non-stable Fedora we'll just limit this to
# `stable`/`testing`/`testing-devel`. It's possible that this test will
# fail on one of those streams if we fast track VIM and it's not
# availabe in any repo, but we can just snooze the entire test in that
# case.
# fail on one of those streams if we fast track one of these and they're
# not availabe in any repo, but we can just snooze the entire test in
# that case.
case "$(get_fcos_stream)" in
"stable"|"testing"|"testing-devel") commands+=('vim') ;;
"stable"|"testing"|"testing-devel") commands+=('vim' 'gdb') ;;
*) ;;
esac

Expand Down
Loading