Skip to content

Commit

Permalink
[mtr_cases] Properly support disabling test cases in 8.0 and disable …
Browse files Browse the repository at this point in the history
…batch #1

Summary:
Disabling tests:
1. Transaction related - those are already disabled in 5.6 as they are not supported
2. hotbackup tests - we need Xtrabackup for MyRocks
3. partition tests - we need Percona's partition patch. Note these are partition specific tests - tests that only use partition are properly fixed up to work without partitions to ensure we have good coverage.
4. tests that are requires authentication plugin
5. Missing patches

In 8.0 the disabled.def aren't being used anymore and instead they are located in collections and needs to be specifically added.

Reviewed By: lloyd

Differential Revision: D17555081
  • Loading branch information
yizhang82 authored and inikep committed Apr 16, 2024
1 parent 6e7e602 commit da7fc92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 2 additions & 0 deletions mysql-test/lib/mtr_cases.pm
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,8 @@ sub create_disabled_test_list($$) {
# Add 'disabled.def' files.
unshift(@disabled_collection,
"$::glob_mysql_test_dir/collections/disabled.def");
unshift(@disabled_collection,
"$::glob_mysql_test_dir/collections/disabled_rocksdb.def");

# Add internal 'disabled.def' file only if it exists
my $internal_disabled_def_file =
Expand Down
4 changes: 0 additions & 4 deletions mysql-test/suite/rocksdb/t/disabled.def

This file was deleted.

0 comments on commit da7fc92

Please sign in to comment.