diff --git a/Gentest.py b/Gentest.py new file mode 100755 index 00000000..a6ce7abd --- /dev/null +++ b/Gentest.py @@ -0,0 +1,146 @@ +#!/usr/bin/env python3 + +""" +Gentest.py +This script runs the WCA_CLI commands and can also generate test code for the patch. + +Usage: + ./Gentest.py PATCH_NAME + +Example: + ./Gentest.py fs-patch + +Description: + - Takes the patch file name as an argument in the same location. + - User can pass CLI commands to history argument + - Generates a test code file for the patch using avocado-misc-tests style. + - Extracts only the relevant Python code (like import statements, function and class blocks) + from the generated output file and writes it to a final Python file. + +Author: + Tellakula Yeswanth Krishna - yeswanth@ibm.com + +""" +import os +import sys +import subprocess +import argparse + +patch_file = sys.argv[1] +final_py_file = 'test_'+sys.argv[1]+'.py' +data_file= 'sudocode.txt' +WCA_CLI_PATH = 'wca-api/WCA_CLI' +WCA_CLI_REPO_URL="https://github.ibm.com/code-assistant/wca-api.git" + +def run_wca_cli_commands(patch_file, data_file): + + #Check APIKEY exist in enviroment + if not os.getenv("IAM_APIKEY"): + print("Error: IAM_APIKEY is not set. Please export it by -> export IAM_APIKEY=your_api_key_here and make sure having python3.13+ Environment") + sys.exit(1) + + #Ensure WCA_CLI repo exists locally. If not, automatically clone it. + if not os.path.isdir(WCA_CLI_PATH): + print("The '{WCA_CLI_PATH}' directory does not exist.") + print("Cloning repository from {WCA_CLI_REPO_URL}...") + subprocess.run(["git", "clone", WCA_CLI_REPO_URL]) + print("Repository cloned successfully!") + + #Run WCA_CLI commands to gather explanations and generate test code. + history = [ + "What specific issues does this patch address", + "Are there any prerequisites or dependencies for applying this patch" + ] + + history1 = [ + "generate a python py unitest for the patch using the avocado-misc-tests style", + ] + + for i,prompt in enumerate(history,start=1): + command = [ + "python", "wca-api/WCA_CLI/wca_cli.py", "prompt", prompt, + "--source-file", patch_file + ] + print(f"Executing {i}: {prompt}") + subprocess.run(command) + print("\n") + + for i, prompt1 in enumerate(history1, start=1): + with open(data_file, "w") as outfile: + command = [ + "python", "wca-api/WCA_CLI/wca_cli.py", "unit-test", "--using", "avacado framework", + patch_file + + ] + print(f"Executing {i}: {prompt1}") + subprocess.run(command, stdout=outfile) + print("\n") + + +def extract_python_code(input_file, output_file): + """ + Extract only Python code (imports, def/class blocks, comments) from the generated file. + """ + with open(input_file, 'r') as infile, open(output_file, 'w') as outfile: + in_code_block = False + current_indent_level = None + + for line in infile: + stripped_line = line.lstrip() + + # Keep import statements at top level + if stripped_line.startswith('import ') or stripped_line.startswith('from '): + outfile.write(line) + continue + + # Start of function or class block + if stripped_line.startswith('def ') or stripped_line.startswith('class '): + in_code_block = True + current_indent_level = len(line) - len(stripped_line) + outfile.write(line) + continue + + if in_code_block: + indent_level = len(line) - len(stripped_line) + + # Keep blank lines and comments + if not stripped_line or stripped_line.startswith('#'): + outfile.write(line) + continue + + # If line is still part of block + if indent_level >= current_indent_level: + outfile.write(line) + else: + # Outside block + in_code_block = False + +def main(): + + parser = argparse.ArgumentParser( + description=( + "Please export APIKEY it by -> export IAM_APIKEY=your_api_key_here and make sure having python3.13+ Environment.\n" + "Have the clone repo: https://github.ibm.com/code-assistant/wca-api.git,If not script handle to clone the Repo.\n" + "Gentest.py: Execute WCA CLI Prompts about patch and Generate Python test code/unit-test for a patch using WCA_CLI and " + "extract relevant code to a final Python file.\n\n" + "Example usage:\n" + " ./Gentest.py fs-patch\n" + "This will create test_fs-patch.py from the WCA_CLI-generated output.\n" + ), + formatter_class=argparse.RawDescriptionHelpFormatter + ) + parser.add_argument( + "patch_name", + help="Patch name or file to process (example: fs-patch)" + ) + args = parser.parse_args() + + print("Running WCA_CLI commands for patch:",patch_file) + run_wca_cli_commands(patch_file, data_file) + + print("Extracting Python code from "+data_file+" to "+ final_py_file) + extract_python_code(data_file, final_py_file) + + +if __name__ == "__main__": + main() diff --git a/README.md b/README.md index 46303060..1b9b12ac 100644 --- a/README.md +++ b/README.md @@ -61,47 +61,48 @@ It is highly recommended for users to execute the following command as root when ``` $ ./avocado-setup.py -h - usage: avocado-setup.py [-h] [--bootstrap] [--run-suite RUN_SUITE] - [--output-dir OUTPUTDIR] [--use-test-dir] - [--input-file INPUTFILE] - [--interval-time INTERVAL] [--verbose] - [--only-filter ONLY_FILTER] [--no-filter NO_FILTER] - [--additional-args ADD_ARGS] [--guest-os GUEST_OS] - [--vt {qemu,libvirt}] [--install] [--no-download] - [--no-deps-check] [--install-deps] [--clean] - [--enable-kvm] - - optional arguments: - -h, --help show this help message and exit - --bootstrap Prepare the environment for test - --run-suite RUN_SUITE + usage: avocado-setup.py [-h] [--bootstrap] [--run-suite RUN_SUITE] [--output-dir OUTPUTDIR] + [--use-test-dir] [--input-file INPUTFILE] [--interval-time INTERVAL] + [--verbose] [--only-filter ONLY_FILTER] [--no-filter NO_FILTER] + [--additional-args ADD_ARGS] [--guest-os GUEST_OS] [--vt {qemu,libvirt}] + [--install] [--no-download] [--no-deps-check] [--install-deps] [--clean] + [--enable-kvm] [--nrunner] [--run-tests RUN_TESTS] [--config-env CONFIG_PATH] + [--config-norun NORUNTEST_PATH] + + options: + -h, --help show this help message and exit + --bootstrap Prepare the environment for test + --run-suite RUN_SUITE Indicate which test suite(s) to run - --output-dir OUTPUTDIR + --output-dir OUTPUTDIR Specify the custom test results directory - --use-test-dir Use corresponding test-name dir for storing job results - --input-file INPUTFILE - Specify input file for custom mux values for host - tests - --interval-time INTERVAL + --use-test-dir Use corresponding test-name dir for storing job results + --input-file INPUTFILE + Specify input file for custom mux values for host tests + --interval-time INTERVAL Specify the interval time between tests - --verbose Enable verbose output on the console - --only-filter ONLY_FILTER - Add filters to include specific avocado tests,features - from the guest test suite - --no-filter NO_FILTER - Add filters to exclude specific avocado tests,features - from the guest test suite - --additional-args ADD_ARGS + --verbose Enable verbose output on the console + --only-filter ONLY_FILTER + Add filters to include specific avocado tests,features from the guest test suite + --no-filter NO_FILTER + Add filters to exclude specific avocado tests,features from the guest test suite + --additional-args ADD_ARGS Pass additional arguments to the command - --guest-os GUEST_OS Provide Guest os: Default: JeOS.27.ppc64le - --vt {qemu,libvirt} Provide VT: qemu or libvirt Default: libvirt - --install Install the Guest VM, if needed. - --no-download To download the preinstalled guest image - --no-deps-check To force wrapper not to check for dependancy packages - --install-deps To force wrapper to install dependancy packages (Only - for Ubuntu, SLES and yum based OS) - --clean To remove/uninstall autotest, avocado from system - --enable-kvm enable bootstrap kvm tests + --guest-os GUEST_OS Provide Guest os: Default: JeOS.27.ppc64le + --vt {qemu,libvirt} Provide VT: qemu or libvirt Default: libvirt + --install Install the Guest VM, if needed. + --no-download To download the preinstalled guest image + --no-deps-check To force wrapper not to check for dependancy packages + --install-deps To force wrapper to install dependancy packages (Only for Ubuntu, SLES and yum based OS) + --clean To remove/uninstall autotest, avocado from system + --enable-kvm enable bootstrap kvm tests + --nrunner enable Parallel run + --run-tests RUN_TESTS + To run the host tests provided in the option and publish result [Note: test names(full path) and separated by comma] + --config-env CONFIG_PATH + Specify env config path + --config-norun NORUNTEST_PATH + Specify no run tests config path ``` @@ -249,6 +250,17 @@ $ ./avocado-setup.py -h 15. `--enable-kvm`: > By default kvm(guest VM) tests environment is not bootstrapped, enable this flag to bootstrap KVM (guest VM) tests. +16. `--nrunner`: + > To enable Parallel run through avocado + +17. `--run-tests`: + > To run the host tests provided in the option and publish result [Note: test names(full path) and separated by comma] + +18. `--config-env`: + > Path to a custom environment config file for Avocado setup. + +19. `--config-norun`: + > Path to a custom NORUNTEST File path ### Customizing Test Suites: diff --git a/avocado-setup.py b/avocado-setup.py index bde34a5c..056c21eb 100644 --- a/avocado-setup.py +++ b/avocado-setup.py @@ -24,38 +24,43 @@ import argparse import configparser import binascii - +from enum import Enum from lib.logger import logger_init from lib import helper AVOCADO_CONFIG_DIR = "%s/.config/avocado" % os.environ['HOME'] BASE_PATH = os.path.dirname(os.path.abspath(__file__)) CONFIG_PATH = "%s/config/wrapper/env.conf" % BASE_PATH -prescript = "%s/config/prescript" % BASE_PATH -postscript = "%s/config/postscript" % BASE_PATH -NORUNTEST_PATH = "%s/config/wrapper/no_run_tests.conf" % BASE_PATH -TEST_CONF_PATH = "%s/config/tests/" % BASE_PATH CONFIGFILE = configparser.ConfigParser() -CONFIGFILE.read(CONFIG_PATH) +NORUNTEST_PATH = "%s/config/wrapper/no_run_tests.conf" % BASE_PATH NORUNTESTFILE = configparser.ConfigParser() -NORUNTESTFILE.read(NORUNTEST_PATH) INPUTFILE = configparser.ConfigParser() INPUTFILE.optionxform = str -BASE_FRAMEWORK = eval(CONFIGFILE.get('framework', 'base')) -KVM_FRAMEWORK = eval(CONFIGFILE.get('framework', 'kvm')) -OPTIONAL_FRAMEWORK = eval(CONFIGFILE.get('framework', 'optional')) -TEST_REPOS = eval(CONFIGFILE.get('tests', 'name')) -TEST_DIR = "%s/tests" % BASE_PATH -DATA_DIR = "%s/data" % BASE_PATH -LOG_DIR = "%s/results" % BASE_PATH logger = logger_init(filepath=BASE_PATH).getlogger() -prescript_dir = CONFIGFILE.get('script-dir', 'prescriptdir') -postscript_dir = CONFIGFILE.get('script-dir', 'postscriptdir') args = None outputdir = '' pipManager = None +class Result(Enum): + Testcount = "Total" + Pass = "pass" + Cancel = "cancel" + Error = "errors" + Failures = "failures" + Skip = "skip" + Warn = "warn" + Interrupt ="interrupt" + +class Testsuite_status(Enum): + Total = "Total" + Run = "Run" + Not_Run = "Not_Run" + Cant_Run = "Cant_Run" + +count_result = { _.value : 0 for _ in Result} +count_testsuites_status = { _.value : 0 for _ in Testsuite_status} + class TestSuite(): """ Class for Testsuite @@ -75,7 +80,7 @@ def __init__(self, name, resultdir, vt_type, test=None, mux=None, args=None, self.test = test self.mux = mux self.args = args - self.run = "Not_Run" + self.run = Testsuite_status.Not_Run.value self.runsummary = None self.runlink = None if use_test_dir: @@ -141,8 +146,19 @@ def env_check(enable_kvm): if packages != '': env_deps = packages.split(',') for dep in env_deps: - if helper.runcmd(cmd_pat % dep, ignore_status=True)[0] != 0: - not_found.append(dep) + if(dep[-1] == "$"): + #Substrings + formatted_dep=dep[:-1] + original_dep = formatted_dep + else: + #Absoulute strings + if helper.get_dist()[0] == "ubuntu": + formatted_dep = f"^{dep}/" + else: + formatted_dep = dep + original_dep = dep + if helper.runcmd(cmd_pat % formatted_dep, ignore_status=True)[0] != 0: + not_found.append(original_dep) env_deps = [] # try to check env specific packages @@ -210,22 +226,44 @@ def get_repo(repo, basepath): :param repo: tuple of repo link and branch(optional) :param basepath: base path where the repository has to be downloaded """ - if not repo[1]: - branch = "master" + if not isinstance(repo, tuple): + repo = (repo, '') + + cmd_default_branch = "git ls-remote --symref %s HEAD | grep '^ref:' | awk '{print $2}' | cut -d'/' -f3" % repo[0] + status, default_branch = helper.runcmd(cmd_default_branch, err_str="Failed to find default branch for %s repository:" % repo[0]) + if status != 0: + logger.warning(f"Failed to find default branch for {repo[0]} repository, going ahead assuming master branch as default branch") + default_branch = "master" + if repo[1] == '': + branch = default_branch else: branch = repo[1] - cmd_update = "b=%s;git reset --hard && git checkout master && git remote update && (git branch|grep $b||(git checkout $b && git switch -c $b))" % branch + cmd_istag = "git ls-remote --refs %s %s" % (repo[0], branch) + status, res = helper.runcmd(cmd_istag, err_str="Failed to query refs for %s repository:" % branch) + if "refs" not in res: + logger.error(f"Invalid branch or tag '{repo[1]}' for repository '{repo[0]}'") + sys.exit(1) + if "tags" in res: + cmd_update = "b=%s;git fetch origin && git checkout tags/$b || (echo \"Error: Could not checkout tag $b\" >&2 && exit 1)" % branch + else: + cmd_update = "b=%s;git reset --hard && git checkout %s && git remote update && (git branch | grep -w $b && (git switch $b && git pull origin $b --rebase) || (git fetch origin && git switch -c $b origin/$b) || (echo \"Error: Could not sync with origin/$b\" >&2 && exit 1))" % (branch, default_branch) + repo_name = repo[0].split('/')[-1].split('.git')[0] repo_path = os.path.join(basepath, repo_name) cmd_clone = "git clone %s %s" % (repo[0], repo_path) - if os.path.isdir(repo_path): - cmd = "cd %s && %s" % (repo_path, cmd_update) + + logger.info("\t3. Cloning/Updating the repo: %s with branch %s under %s" % ( + repo_name, branch, repo_path)) + if not os.path.isdir(repo_path): + cmd = "%s && cd %s" % (cmd_clone, repo_path) else: - cmd = "%s && cd %s && %s" % (cmd_clone, repo_path, cmd_update) - helper.runcmd(cmd, - info_str="\t3. Cloning/Updating the repo: %s with branch %s under %s" % ( - repo_name, branch, repo_path), - err_str="Failed to clone/update %s repository:" % repo_name) + cmd = "cd %s && [ %s = \"$(git remote get-url origin)\" ] && echo \"Repo matches\" && exit 0 \" \ + || echo \"Repo does not match\" && exit 1 \"" % (repo_path, repo[0]) + + helper.runcmd(cmd, err_str="Failed to clone %s repository:, Please clean environment" % repo_name) + + cmd = "cd %s && %s" % (repo_path, cmd_update) + helper.runcmd(cmd, err_str="Failed to update %s repository:" % repo_name) def create_config(logdir): @@ -382,12 +420,14 @@ def run_test(testsuite, avocado_bin, nrunner): status = os.system(cmd) status = int(bin(int(status))[2:].zfill(16)[:-8], 2) if status >= 2: - testsuite.runstatus("Not_Run", "Command execution failed") + testsuite.runstatus(Testsuite_status.Not_Run.value, "Command execution failed") + count_testsuites_status[Testsuite_status.Not_Run.value] += 1 return except Exception as error: logger.error("Running testsuite %s failed with error\n%s", testsuite.name, error) - testsuite.runstatus("Not_Run", "Command execution failed") + testsuite.runstatus(Testsuite_status.Not_Run.value, "Command execution failed") + count_testsuites_status[Testsuite_status.Not_Run.value] += 1 return logger.info('') result_link = testsuite.jobdir() @@ -396,13 +436,17 @@ def run_test(testsuite, avocado_bin, nrunner): result_link += "/job.log\n" with open(result_json, encoding="utf-8") as filep: result_state = json.load(filep) - for state in ['pass', 'cancel', 'errors', 'failures', 'skip', 'warn', 'interrupt']: + for state in count_result: if state in result_state.keys(): + count_result[Result.Testcount.value] += int(result_state[state]) + count_result[state] += int(result_state[state]) result_link += "| %s %s |" % (state.upper(), str(result_state[state])) - testsuite.runstatus("Run", "Successfully executed", result_link) + testsuite.runstatus(Testsuite_status.Run.value, "Successfully executed", result_link) + count_testsuites_status[Testsuite_status.Run.value] += 1 else: - testsuite.runstatus("Not_Run", "Unable to find job log file") + testsuite.runstatus(Testsuite_status.Not_Run.value, "Unable to find job log file") + count_testsuites_status[Testsuite_status.Not_Run.value] += 1 return @@ -511,7 +555,7 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm): continue # split line ignoring quotes used for additional args line = shlex.split(line) - test_dic['test'] = line[0].strip('$') + test_dic['test'] = os.path.join(TEST_DIR, line[0].strip('$')) test_dic['name'] = test_dic['test'].split("/")[-1] if ":" in test_dic['test'].split("/")[-1]: test_dic['name'] = "%s_%s" % (test_dic['name'].split(".")[0], @@ -632,8 +676,51 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm): parser.add_argument('--run-tests', dest="run_tests", action='store', default=None, help="To run the host tests provided in the option and publish result [Note: test names(full path) and separated by comma]") + parser.add_argument('--config-env', dest='CONFIG_PATH', + action='store', default=CONFIG_PATH, + help='Specify env config path') + parser.add_argument('--config-norun', dest='NORUNTEST_PATH', + action='store', default=NORUNTEST_PATH, + help='Specify no run tests config path') args = parser.parse_args() + + if args.CONFIG_PATH: + if os.path.exists(args.CONFIG_PATH): + CONFIGFILE.read(args.CONFIG_PATH) + logger.info(f"Env Config: {args.CONFIG_PATH}") + else: + logger.error(f"Env Config Path: {args.CONFIG_PATH} does not exist") + sys.exit(1) + else: + logger.error(f"Env Config Path: {args.CONFIG_PATH} not defined") + sys.exit(1) + + if args.NORUNTEST_PATH: + if os.path.exists(args.NORUNTEST_PATH): + NORUNTESTFILE.read(args.NORUNTEST_PATH) + logger.info(f"No Run Config: {args.NORUNTEST_PATH}") + else: + logger.error(f"No Run Config Path: {args.NORUNTEST_PATH} does not exist") + sys.exit(1) + else: + logger.error(f"No Run Config Path: {args.NORUNTEST_PATH} not defined") + sys.exit(1) + + globals() ['TEST_CONF_PATH'] = os.path.join(BASE_PATH, eval(CONFIGFILE.get('paths', 'test_cfg_dir'))) + globals() ['LOG_DIR'] = os.path.join(BASE_PATH, eval(CONFIGFILE.get('paths', 'results_dir'))) + globals() ['TEST_DIR'] = os.path.join(BASE_PATH, eval(CONFIGFILE.get('paths', 'test_dir'))) + globals() ['DATA_DIR'] = os.path.join(BASE_PATH, eval(CONFIGFILE.get('paths', 'data_dir'))) + globals() ['prescript'] = os.path.join(BASE_PATH, eval(CONFIGFILE.get('paths', 'pre_script_dir'))) + globals() ['postscript'] = os.path.join(BASE_PATH, eval(CONFIGFILE.get('paths', 'post_script_dir'))) + globals() ['BASE_FRAMEWORK'] = eval(CONFIGFILE.get('framework', 'base')) + globals() ['KVM_FRAMEWORK'] = eval(CONFIGFILE.get('framework', 'kvm')) + globals() ['OPTIONAL_FRAMEWORK'] = eval(CONFIGFILE.get('framework', 'optional')) + globals() ['TEST_REPOS'] = eval(CONFIGFILE.get('tests', 'name')) + globals() ['prescript_dir'] = CONFIGFILE.get('script-dir', 'prescriptdir') + globals() ['postscript_dir'] = CONFIGFILE.get('script-dir', 'postscriptdir') + globals() ['PIP_PACKAGES'] = eval(CONFIGFILE.get('pip-package', 'package')) + if helper.get_machine_type() == 'pHyp': args.enable_kvm = False if args.run_suite: @@ -648,7 +735,7 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm): "as guest tests are requested") args.enable_kvm = True pipManager = helper.PipMagager(BASE_FRAMEWORK, OPTIONAL_FRAMEWORK, - KVM_FRAMEWORK, args.enable_kvm) + KVM_FRAMEWORK, PIP_PACKAGES, args.enable_kvm) if not (args.run_suite and args.install_deps and args.bootstrap and args.install) and args.clean: # honor the spl condition, just to deep clean the environment incase needed @@ -726,8 +813,10 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm): Testsuites[test_suite] = TestSuite(test_suite, outputdir, args.vt_type, use_test_dir=args.testdir) - Testsuites[test_suite].runstatus("Cant_Run", + Testsuites[test_suite].runstatus(Testsuite_status.Cant_Run.value, "Config file not present") + count_testsuites_status[Testsuite_status.Cant_Run.value] += 1 + Testsuites_list.append(test_suite) continue for test in test_list: for l_key in ['mux', 'args']: @@ -748,12 +837,14 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm): use_test_dir=args.testdir) Testsuites_list.append(str(test_suite)) if not Testsuites[test_suite].config(): - Testsuites[test_suite].runstatus("Cant_Run", + Testsuites[test_suite].runstatus(Testsuite_status.Cant_Run.value, "Config file not present") + count_testsuites_status[Testsuite_status.Cant_Run.value] += 1 continue # Run Tests + count_testsuites_status[Testsuite_status.Total.value] = len(Testsuites_list) for test_suite in Testsuites_list: - if not Testsuites[test_suite].run == "Cant_Run": + if not Testsuites[test_suite].run == Testsuite_status.Cant_Run.value: run_test(Testsuites[test_suite], avocado_bin, args.nrunner) if args.interval: time.sleep(int(args.interval)) @@ -782,6 +873,15 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm): 10), Testsuites[test_suite].runsummary)) summary_output.append(Testsuites[test_suite].runlink) + + summary_output.append("\nTest suites status:\n") + for k, val in count_testsuites_status.items(): + summary_output.append('%s %s' % (k.upper().ljust(20), val)) + + summary_output.append("\nFinal count summary for tests run:\n") + for k, val in count_result.items(): + summary_output.append('%s %s' % (k.upper().ljust(20), val)) + logger.info("\n".join(summary_output)) if os.path.isdir("/tmp/mux/"): diff --git a/config/tests/guest/libvirt/backuprestore.cfg b/config/tests/guest/libvirt/backuprestore.cfg index 3e976dbe..70ee8bd5 100644 --- a/config/tests/guest/libvirt/backuprestore.cfg +++ b/config/tests/guest/libvirt/backuprestore.cfg @@ -45,48 +45,59 @@ variants: only unattended_install.import.import.default_install.aio_native - guest_backuprestore: - only virsh.snapshot_dumpxml,virsh.snapshot_par_cur,virsh.snapshot_disk,virsh.snapshot_create_as - #Skipping qed 98 test cases ,as these are supported only for libvirt having version 1.1.0 - no virsh.snapshot_disk..attach_img_qed - #gluster not supported on HOST OS - no virsh.snapshot_disk.no_delete.positive_test.no_pool.network_disk - no virsh.snapshot_disk.no_delete.negative_test.no_pool.network_disk - #Skipping test case due to bug (https://bugzilla.redhat.com/show_bug.cgi?id=1083345) - no virsh.snapshot_disk.delete_test.positive_test.no_pool.attach_img_qcow2.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.delete_test.positive_test.pool_vol - no virsh.snapshot_disk.no_delete.positive_test.no_pool.attach_img_qcow2.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.no_delete.positive_test.pool_vol.dir_pool.attach_img_qcow2.v_qcow2.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.no_delete.positive_test.pool_vol.dir_pool.attach_img_qcow2.v_qcow2v3.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_pool.attach_img_qcow2.v_qcow2.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_pool.attach_img_qcow2.v_qcow2v3.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_gluster_pool.attach_img_qcow2.v_qcow2.snapshot_from_xml.disk_internal.memory_no - no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_gluster_pool.attach_img_qcow2.v_qcow2v3.snapshot_from_xml.disk_internal.memory_no - #Blocked by bug 152314 - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.disk_only_spec - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.check_libvirtd_log - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.quiesce_with_diskonly.with_diskspec - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_default - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.raw - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.xz - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.lzop - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.gzip - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.bzip2 - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.no_metadata_with_memspec - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.reuse_external - no virsh.snapshot_create_as..file_disk.no_snapshot_attr.multi_disk_external - no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.name_with_double_dash - no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.quiesce_with_diskonly.no_diskspec - no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.atomic_with_diskonly - no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.no_metadata - no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.no_metadata_with_diskonly - no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.multi_snapshots - no virsh.snapshot_create_as.positive_tests.non_acl.file_disk.with_snapshot_attr.disk_only_spec - no virsh.snapshot_create_as..quiesce_without_diskonly - no virsh.snapshot_create_as.positive_tests.disk_only_spec - no virsh.snapshot_create_as.positive_tests.reuse_external - no virsh.snapshot_create_as.positive_tests.multi_snapshots - no virsh.snapshot_create_as..gluster - no virsh.snapshot_disk.delete_test - + variants: + - snapshot: + only virsh.snapshot_dumpxml,virsh.snapshot_par_cur,virsh.snapshot_disk,virsh.snapshot_create_as + # Skipping qed 98 test cases ,as these are supported only for libvirt having version 1.1.0 + no virsh.snapshot_disk..attach_img_qed + # Gluster not supported on HOST OS + no virsh.snapshot_disk.no_delete.positive_test.no_pool.network_disk + no virsh.snapshot_disk.no_delete.negative_test.no_pool.network_disk + # Skipping test case due to bug (https://bugzilla.redhat.com/show_bug.cgi?id=1083345) + no virsh.snapshot_disk.delete_test.positive_test.no_pool.attach_img_qcow2.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.delete_test.positive_test.pool_vol + no virsh.snapshot_disk.no_delete.positive_test.no_pool.attach_img_qcow2.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.no_delete.positive_test.pool_vol.dir_pool.attach_img_qcow2.v_qcow2.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.no_delete.positive_test.pool_vol.dir_pool.attach_img_qcow2.v_qcow2v3.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_pool.attach_img_qcow2.v_qcow2.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_pool.attach_img_qcow2.v_qcow2v3.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_gluster_pool.attach_img_qcow2.v_qcow2.snapshot_from_xml.disk_internal.memory_no + no virsh.snapshot_disk.no_delete.positive_test.pool_vol.netfs_gluster_pool.attach_img_qcow2.v_qcow2v3.snapshot_from_xml.disk_internal.memory_no + # Blocked by bug 152314 + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.disk_only_spec + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.check_libvirtd_log + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.quiesce_with_diskonly.with_diskspec + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_default + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.raw + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.xz + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.lzop + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.gzip + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.live_memspec.compress_format.bzip2 + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.no_metadata_with_memspec + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.reuse_external + no virsh.snapshot_create_as..file_disk.no_snapshot_attr.multi_disk_external + no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.name_with_double_dash + no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.quiesce_with_diskonly.no_diskspec + no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.atomic_with_diskonly + no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.no_metadata + no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.no_metadata_with_diskonly + no virsh.snapshot_create_as.positive_tests.acl_test.file_disk.no_snapshot_attr.multi_snapshots + no virsh.snapshot_create_as.positive_tests.non_acl.file_disk.with_snapshot_attr.disk_only_spec + # Needs change of parameter, running it later + no virsh.snapshot_create_as.negative_tests.network_disk.iscsi.device_lun + no virsh.snapshot_create_as..quiesce_without_diskonly + no virsh.snapshot_create_as.positive_tests.disk_only_spec + no virsh.snapshot_create_as.positive_tests.reuse_external + no virsh.snapshot_create_as.positive_tests.multi_snapshots + no virsh.snapshot_create_as..gluster + no virsh.snapshot_disk.delete_test + + # Default virtio (virtio-blk) is not supported for iscsi emulation + # Hence, change it to scsi bus + - snapshot_create_as.negative_tests.network_disk.iscsi.device_lun: + disk_target_bus = "scsi" + disk_target = "sdb" + only virsh.snapshot_create_as.negative_tests.network_disk.iscsi.device_lun + - guest_remove: only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/cpu_p1.cfg b/config/tests/guest/libvirt/cpu_p1.cfg new file mode 100644 index 00000000..062685bc --- /dev/null +++ b/config/tests/guest/libvirt/cpu_p1.cfg @@ -0,0 +1,143 @@ +include tests-shared.cfg +username = root +password = Aform@fvt +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +nettype = bridge +netdst=virbr0 +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +# Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 8 +vcpu_cores = 8 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 4096 +setvcpus_max = 32 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_cpu: + variants: + - nodecpustats: + only virsh.nodecpustats.all_options_all_cpus, virsh.nodecpustats.disable_enable_cpu, virsh.nodecpustats.with_libvirtd_stop + - emulatorpin: + only virsh.emulatorpin.positive_testing.get_emulatorpin_parameter.running_guest.emulatorpin_options.none, virsh.emulatorpin.positive_testing.get_emulatorpin_parameter.running_guest.emulatorpin_options.live, virsh.emulatorpin.positive_testing.get_emulatorpin_parameter.running_guest.emulatorpin_options.current, virsh.emulatorpin.positive_testing.get_emulatorpin_parameter.shutoff_guest.emulatorpin_options.none, virsh.emulatorpin.positive_testing.get_emulatorpin_parameter.shutoff_guest.emulatorpin_options.config, virsh.emulatorpin.positive_testing.get_emulatorpin_parameter.shutoff_guest.emulatorpin_options.current, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.shutoff_guest.cpulist.emulatorpin_options.config.comma_list, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.shutoff_guest.cpulist.emulatorpin_options.config.single, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.shutoff_guest.cpulist.emulatorpin_options.current.comma_list, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.shutoff_guest.cpulist.emulatorpin_options.current.single, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.running_guest.cpulist.emulatorpin_options.live.comma_list, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.running_guest.cpulist.emulatorpin_options.live.single.default, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.running_guest.cpulist.emulatorpin_options.current.comma_list, virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.running_guest.cpulist.emulatorpin_options.current.single.default + no virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.shutoff_guest.cpulist.emulatorpin_options.current.auto_placement + no virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.shutoff_guest.cpulist.emulatorpin_options.config.auto_placement + no virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.running_guest.cpulist.emulatorpin_options.live.single.start_with_cpuset_config + no virsh.emulatorpin.positive_testing.set_emulatorpin_parameter.running_guest.cpulist.emulatorpin_options.current.single.start_with_cpuset_config + - vcpuinfo: + only virsh.vcpuinfo.normal_test.name_option + - vcpupin: + only virsh.vcpupin.offline.positive_test.cpu_list.cpu_list_x, virsh.vcpupin.offline.positive_test.cpu_list.cpu_list_comma, virsh.vcpupin.online.positive_test.cpu_list.cpu_list_x, virsh.vcpupin.online.positive_test.cpu_list.cpu_list_comma, virsh.vcpupin.online.positive_test.dom_name, virsh.vcpupin.online.positive_test.uuid, virsh.vcpupin.online.positive_test.live, virsh.vcpupin.online.positive_test.config, virsh.vcpupin.online.positive_test.current, virsh.vcpupin.online.positive_test.initial_check + - schedinfo: + only virsh.schedinfo_qemu_posix.normal_test.show_schedinfo.for_show.set_by_self.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.show_schedinfo.for_show.set_by_self.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_multi_params.for_multi.set_by_self.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_min.set_by_cmd.config.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_min.set_by_cmd.config.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_min.set_by_cmd.live.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_min.set_by_xml.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_cmd.config.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_cmd.config.valid_domname.shutdown_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_cmd.config.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_cmd.live.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_normal.set_by_xml.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_maximum.set_by_cmd.config.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_maximum.set_by_cmd.config.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_maximum.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_maximum.set_by_cmd.live.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_maximum.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_cpu_shares.for_cpushare.value_maximum.set_by_xml.valid_domuuid.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_period.for_period.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_cpu_param.set_vcpu_quota.for_quota.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_period.for_period.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_emulator_param.set_emulator_quota.for_quota.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_period.for_period.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_global_param.set_global_quota.for_quota.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_period.for_period.value_max.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_zero.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_zero.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_min.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_min.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_normal.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_normal.set_by_xml.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_max.set_by_cmd.live.valid_domname.running_guest, virsh.schedinfo_qemu_posix.normal_test.set_iothread_param.set_iothread_quota.for_quota.value_max.set_by_xml.valid_domname.running_guest + - cpucompare: + only virsh.cpu_compare.host_cpu.no_cpu_match.default_feature, virsh.cpu_compare.host_cpu.no_cpu_match.modify_vendor, virsh.cpu_compare.host_cpu.no_cpu_match.modify_mode.host_model, virsh.cpu_compare.host_cpu.no_cpu_match.modify_mode.host_passthrough, virsh.cpu_compare.host_cpu.no_cpu_match.modify_mode.invalid_model, virsh.cpu_compare.host_cpu.no_cpu_match.empty_xml_file, virsh.cpu_compare.host_cpu.no_cpu_match.invalid_ref, virsh.cpu_compare.host_cpu.no_cpu_match.extra_option, virsh.cpu_compare.host_cpu.no_cpu_match.invalid_option, virsh.cpu_compare.host_cpu.minimum_cpu_match.default_feature, virsh.cpu_compare.host_cpu.minimum_cpu_match.modify_vendor, virsh.cpu_compare.host_cpu.minimum_cpu_match.modify_mode.host_model, virsh.cpu_compare.host_cpu.minimum_cpu_match.modify_mode.host_passthrough, virsh.cpu_compare.host_cpu.minimum_cpu_match.modify_mode.invalid_model, virsh.cpu_compare.host_cpu.minimum_cpu_match.empty_xml_file, virsh.cpu_compare.host_cpu.minimum_cpu_match.invalid_ref, virsh.cpu_compare.host_cpu.minimum_cpu_match.extra_option, virsh.cpu_compare.host_cpu.minimum_cpu_match.invalid_option, virsh.cpu_compare.host_cpu.exact_cpu_match.default_feature, virsh.cpu_compare.host_cpu.exact_cpu_match.modify_vendor, virsh.cpu_compare.host_cpu.exact_cpu_match.modify_mode.host_model, virsh.cpu_compare.host_cpu.exact_cpu_match.modify_mode.host_passthrough, virsh.cpu_compare.host_cpu.exact_cpu_match.modify_mode.invalid_model, virsh.cpu_compare.host_cpu.exact_cpu_match.empty_xml_file, virsh.cpu_compare.host_cpu.exact_cpu_match.invalid_ref, virsh.cpu_compare.host_cpu.exact_cpu_match.extra_option, virsh.cpu_compare.host_cpu.exact_cpu_match.invalid_option, virsh.cpu_compare.host_cpu.strict_cpu_match.default_feature, virsh.cpu_compare.host_cpu.strict_cpu_match.modify_vendor, virsh.cpu_compare.host_cpu.strict_cpu_match.modify_mode.host_model, virsh.cpu_compare.host_cpu.strict_cpu_match.modify_mode.host_passthrough, virsh.cpu_compare.host_cpu.strict_cpu_match.modify_mode.invalid_model, virsh.cpu_compare.host_cpu.strict_cpu_match.empty_xml_file, virsh.cpu_compare.host_cpu.strict_cpu_match.extra_option, virsh.cpu_compare.guest_cpu.default_feature, virsh.cpu_compare.guest_cpu.modify_vendor, virsh.cpu_compare.guest_cpu.modify_mode.host_model, virsh.cpu_compare.guest_cpu.modify_mode.host_passthrough, virsh.cpu_compare.guest_cpu.empty_xml_file, virsh.cpu_compare.guest_cpu.invalid_ref, virsh.cpu_compare.guest_cpu.extra_option + no virsh.cpu_compare_xml.full_domxml.custom_mode + no virsh.cpu_compare_xml.full_domxml.host_passthrough + no virsh.cpu_compare_xml.full_capa_xml.action_none + no virsh.cpu_compare_xml.full_capa_xml.delete_features + no virsh.cpu_compare_xml.full_domcapa_xml + no virsh.cpu_compare_xml.cpu_xml.f_domxml + no virsh.cpu_compare_xml.cpu_xml.f_capa_xml + no virsh.cpu_compare_xml.cpu_xml.f_domcapa_xml + no virsh.cpu_compare_xml.cpu_xml.invalid_test + - numatune: + only virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_mode.options.config.preferred, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_mode.options.config.interleave, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_mode.options.config.restrictive, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_mode.options.current.preferred, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_mode.options.current.interleave, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_mode.options.current.restrictive, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.comma_list, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.ranges, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.excluding, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.single, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.comma_list, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.ranges, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.excluding, virsh.numatune.positive_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.single, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.live.comma_list, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.live.ranges, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.live.excluding, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.live.single, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.current.comma_list, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.current.ranges, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.current.excluding, virsh.numatune.positive_testing.set_numa_parameter.running_guest.change_nodeset.options.current.single, virsh.numatune.positive_testing.get_numa_parameter.running_guest.options.none, virsh.numatune.positive_testing.get_numa_parameter.running_guest.options.live, virsh.numatune.positive_testing.get_numa_parameter.running_guest.options.current, virsh.numatune.positive_testing.get_numa_parameter.shutoff_guest.options.none, virsh.numatune.positive_testing.get_numa_parameter.shutoff_guest.options.config, virsh.numatune.positive_testing.get_numa_parameter.shutoff_guest.options.current + - vcpucount: + only virsh.vcpucount.positive_tests.shutoff_test.no_option, virsh.vcpucount.positive_tests.shutoff_test.active_option, virsh.vcpucount.positive_tests.shutoff_test.maximum_option, virsh.vcpucount.positive_tests.shutoff_test.current_active_option, virsh.vcpucount.positive_tests.shutoff_test.current_maximum_option, virsh.vcpucount.positive_tests.running_test.no_option, virsh.vcpucount.positive_tests.running_test.active_option, virsh.vcpucount.positive_tests.running_test.maximum_option, virsh.vcpucount.positive_tests.running_test.current_active_option, virsh.vcpucount.positive_tests.running_test.current_maximum_option, virsh.vcpucount.positive_tests.running_test.live_active_option, virsh.vcpucount.positive_tests.running_test.live_maximum_option, virsh.vcpucount.positive_tests.running_test.guest_option, virsh.setvcpus.normal_test.guest_on.name_option.default.option_maxmum_config + - setvcpus: + only virsh.setvcpus.normal_test.guest_off.option_maximum_config, virsh.setvcpus.normal_test.guest_on.name_option.default.option_maxmum_config + - hotplug: + only libvirt_bench.vcpu_hotplug.memory_stress.setvcpu_del.setvcpu_add.online, libvirt_bench.vcpu_hotplug.memory_stress.setvcpu_del.setvcpu_add.offline, libvirt_bench.vcpu_hotplug.cpu_stress.setvcpu_del.setvcpu_add.online, libvirt_bench.vcpu_hotplug.cpu_stress.setvcpu_del.setvcpu_add.offline, libvirt_bench.vcpu_hotplug.cpu_stress.monitor_del.monitor_add.online, libvirt_bench.vcpu_hotplug.cpu_stress.monitor_del.monitor_add.offline, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vm_operate.no_operation, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vm_operate.save, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vm_operate.managedsave, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vm_operate.save_with_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vm_operate.managedsave_with_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.libvirtd_restart, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vcpu_pin.pin_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vcpu_pin.plug_pin, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vcpu_pin.unplug_pin, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.with_iteration, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.vm_operate.no_operation, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.vm_operate.save, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.vm_operate.managedsave, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.vm_operate.save_with_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.vm_operate.managedsave_with_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.libvirtd_restart, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.vm_operate.no_operation, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.vm_operate.save, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.vm_operate.managedsave, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.vm_operate.save_with_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.vm_operate.managedsave_with_unplug, libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.libvirtd_restart + no libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.with_maxvcpu + no libvirt_bench.vcpu_hotplug.memory_stress.monitor_del.monitor_add.online + no libvirt_bench.vcpu_hotplug.memory_stress.monitor_del.monitor_add.offline + no libvirt_bench.vcpu_hotplug.io_stress.setvcpu_del.setvcpu_add.online + no libvirt_bench.vcpu_hotplug.io_stress.setvcpu_del.setvcpu_add.offline + no libvirt_bench.vcpu_hotplug.io_stress.monitor_del.monitor_add.online + no libvirt_bench.vcpu_hotplug.io_stress.monitor_del.monitor_add.offline + no libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vm_operate.reboot + no libvirt_vcpu_plug_unplug.positive_test.vcpu_set.config.vm_operate.reboot + no libvirt_vcpu_plug_unplug.positive_test.vcpu_set.guest.vm_operate.reboot + no libvirt_vcpu_plug_unplug.positive_test.vcpu_set.live.vcpu_pin.pin_plug_unplug + #- timermanagement: + # no virsh.domtime.positive.set_time_sync + # no virsh.domtime.positive.managedsave_vm + - setvcpu: + only virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_enable_live, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_enable_config, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_enable, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_enable_current, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_disable_live, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_disable_config, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_disable, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.id_option.option_disable_current, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.name_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.pause_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_2_threads.uuid_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_enable_live, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_enable_config, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_enable, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_enable_current, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_disable_live, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_disable_config, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_disable, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.id_option.option_disable_current, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.name_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.pause_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_4_threads.uuid_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_enable_live, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_enable_config, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_enable, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_enable_current, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_disable_live, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_disable_config, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_disable, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.id_option.option_disable_current, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.name_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.pause_option, virsh.setvcpu.normal_test.guest_on.with_comma.with_8_threads.uuid_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_enable_live, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_enable_config, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_enable, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_enable_current, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_disable_live, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_disable_config, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_disable, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.id_option.option_disable_current, virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.pause_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_enable_live, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_enable_config, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_enable, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_enable_current, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_disable_live, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_disable_config, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_disable, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.id_option.option_disable_current, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.name_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.pause_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_4_threads.uuid_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_enable_live, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_enable_config, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_enable, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_enable_current, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_disable_live, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_disable_config, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_disable, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.id_option.option_disable_current, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.name_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.pause_option, virsh.setvcpu.normal_test.guest_on.with_hypen.with_8_threads.uuid_option, virsh.setvcpu.normal_test.guest_off.option_config, virsh.setvcpu.normal_test.guest_off.option_uuid_config, virsh.setvcpu.normal_test.guest_off.option_current + no virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.uuid_option + no virsh.setvcpu.normal_test.guest_on.with_hypen.with_2_threads.name_option + - guestsmt: + only smt.positive.smt1, smt.positive.smt2, smt.positive.smt2.tosmt1, smt.positive.smt4, smt.positive.smt4.tosmt2, smt.positive.smt4.tosmt1, smt.positive.smt8, smt.positive.smt8.tosmt4, smt.positive.smt8.tosmt2, smt.positive.smt8.tosmt1 + no smt.positive.smt8.tosmt1 + - guestvcpu: + only virsh.guestvcpus.normal_test.no-option, virsh.guestvcpus.normal_test.disable, virsh.guestvcpus.normal_test.enable, virsh.guestvcpus.normal_test.combine, virsh.guestvcpus.max_test + - cpumodels: + only virsh.cpu_models.positive_test.local_host.specific_arch + no virsh.cpu_models.positive_test.local_host.auto_get_arch + - vcpumisc: + only vcpu_misc.positive_test.managedsave_restore + no vcpu_misc.positive_test.snapshot + no vcpu_misc.positive_test.mode_max + no vcpu_misc.positive_test.with_maxphysaddr + no vcpu_misc.positive_test.with_topology.vcpus_max_equal_topology + #- guestpin: + #no guestpin.without_emulatorpin.randompin.positive.with_save + #no guestpin.without_emulatorpin.randompin.positive.with_managedsave + #no guestpin.without_emulatorpin.randompin.positive.with_suspend + #no guestpin.without_emulatorpin.randompin.positive.iteration + #no guestpin.without_emulatorpin.randompin.positive.with_stress.guestcpu + #no guestpin.without_emulatorpin.randompin.positive.with_stress.guestmem + #no guestpin.without_emulatorpin.randompin.positive.with_cpu_hotplug + #no guestpin.without_emulatorpin.sequential.positive.with_save + #no guestpin.without_emulatorpin.sequential.positive.with_managedsave + #no guestpin.without_emulatorpin.sequential.positive.with_suspend + #no guestpin.without_emulatorpin.sequential.positive.iteration + #no guestpin.without_emulatorpin.sequential.positive.with_stress.guestcpu + #no guestpin.without_emulatorpin.sequential.positive.with_stress.guestmem + #no guestpin.without_emulatorpin.sequential.positive.with_cpu_hotplug + #no guestpin.with_emualorpin.randompin.positive.with_save + #no guestpin.with_emualorpin.randompin.positive.with_managedsave + #no guestpin.with_emualorpin.randompin.positive.with_suspend + #no guestpin.with_emualorpin.randompin.positive.iteration + #no guestpin.with_emualorpin.randompin.positive.with_stress.guestcpu + #no guestpin.with_emualorpin.randompin.positive.with_stress.guestmem + #no guestpin.with_emualorpin.randompin.positive.with_cpu_hotplug + #no guestpin.with_emualorpin.sequential.positive.with_save + #no guestpin.with_emualorpin.sequential.positive.with_managedsave + #no guestpin.with_emualorpin.sequential.positive.with_suspend + #no guestpin.with_emualorpin.sequential.positive.iteration + #no guestpin.with_emualorpin.sequential.positive.with_stress.guestcpu + #no guestpin.with_emualorpin.sequential.positive.with_stress.guestmem + #no guestpin.with_emualorpin.sequential.positive.with_cpu_hotplug + #no guestpin.with_emualorpin.randompin.positive.with_load_switch + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/cpu_p2.cfg b/config/tests/guest/libvirt/cpu_p2.cfg new file mode 100644 index 00000000..8e1bc76e --- /dev/null +++ b/config/tests/guest/libvirt/cpu_p2.cfg @@ -0,0 +1,101 @@ +include tests-shared.cfg +username = root +password = Aform@fvt +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +nettype = bridge +netdst=virbr0 +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +# Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 +setvcpus_max = 32 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_cpu: + variants: + - cpubasline: + only virsh.cpu_baseline.positive_test.default_test, virsh.cpu_baseline.positive_test.config_guest + - vcpuinfo: + only virsh.vcpuinfo.normal_test.id_option, virsh.vcpuinfo.normal_test.shutoff_option, virsh.vcpuinfo.normal_test.paused_option + - vcpupin: + only virsh.maxvcpus.connect_to_local.with_option.with_qemu, virsh.maxvcpus.connect_to_local.with_option.with_qemu1, virsh.maxvcpus.connect_to_local.with_option.with_kvm, virsh.maxvcpus.connect_to_local.with_option.with_kvm1 + no numad_vcpupin.default + - maxvcpus: + only virsh.maxvcpus.connect_to_local.with_option.with_qemu, virsh.maxvcpus.connect_to_local.with_option.with_qemu1, virsh.maxvcpus.connect_to_local.with_option.with_kvm, virsh.maxvcpus.connect_to_local.with_option.with_kvm1 + #- nodecpumap: + #no virsh.nodecpumap.no_option + #no virsh.nodecpumap.pretty_option + #- qemu_conf: + #no libvirt.conf_file.qemu_conf.clear_emulator_capabilities.positive_test.default + #no libvirt.conf_file.qemu_conf.clear_emulator_capabilities.positive_test.clear_caps + #no libvirt.conf_file.qemu_conf.clear_emulator_capabilities.positive_test.no_clear_caps.priviledge_user + #no libvirt.conf_file.qemu_conf.clear_emulator_capabilities.positive_test.no_clear_caps.default_user + #no libvirt.conf_file.qemu_conf.clear_emulator_capabilities.negative_test.invalid + - setvcpus: + only virsh.setvcpus.normal_test.guest_on.id_option.option_live.add, virsh.setvcpus.normal_test.guest_on.id_option.option_live.del, virsh.setvcpus.normal_test.guest_on.id_option.option_config.add, virsh.setvcpus.normal_test.guest_on.id_option.option_config.del, virsh.setvcpus.normal_test.guest_on.id_option.option_config_live.add, virsh.setvcpus.normal_test.guest_on.id_option.option_config_live.del, virsh.setvcpus.normal_test.guest_on.id_option.option_current.add, virsh.setvcpus.normal_test.guest_on.id_option.option_current.del, virsh.setvcpus.normal_test.guest_on.name_option.add, virsh.setvcpus.normal_test.guest_on.name_option.del, virsh.setvcpus.normal_test.guest_on.name_option.default.restart_vm.update_cur, virsh.setvcpus.normal_test.guest_on.name_option.default.restart_vm.update_max, virsh.setvcpus.normal_test.guest_on.pause_option.add, virsh.setvcpus.normal_test.guest_on.pause_option.del, virsh.setvcpus.normal_test.guest_on.uuid_option.add, virsh.setvcpus.normal_test.guest_on.uuid_option.del, virsh.setvcpus.normal_test.guest_off.option_config, virsh.setvcpus.normal_test.guest_off.option_uuid_config, virsh.setvcpus.normal_test.guest_off.option_current + - timermanagement: + only qemu.clock_getres + no virsh.domtime.positive.get_time + no virsh.domtime.positive.with_pretty + no virsh.domtime.positive.set_time + no virsh.domtime.positive.set_time_max_1 + no virsh.domtime.positive.set_time_max_2 + no virsh.domtime.positive.set_time_max_3 + no virsh.domtime.positive.suspend_vm + no virsh.domtime.positive.set_time_now + - hotpluggable: + only vcpu_hotpluggable.positive_test.vcpus_with_order, vcpu_hotpluggable.positive_test.enable, vcpu_hotpluggable.positive_test.disable, vcpu_hotpluggable.positive_test.unplug.live, vcpu_hotpluggable.positive_test.unplug.config.running_vm, vcpu_hotpluggable.positive_test.unplug.config.shutoff_vm, vcpu_hotpluggable.positive_test.plug.live, vcpu_hotpluggable.positive_test.plug.config.running_vm, vcpu_hotpluggable.positive_test.plug.config.shutoff_vm + #- vcpu_affinity: + #no vcpu_affinity.positive_test.vcpu + #no vcpu_affinity.positive_test.vcpu_placement.static + #no vcpu_affinity.positive_test.cputune.vcpu_affinity_xml + #no vcpu_affinity.positive_test.cputune.vcpu_affinity_active + #no vcpu_affinity.positive_test.cputune.vcpu_affinity_config + #no vcpu_affinity.positive_test.cputune.vcpu_maxvcpu_minus + #no vcpu_affinity.positive_test.cputune.vcpu_maxvcpu + #no vcpu_affinity.positive_test.cputune.vcpu_maxvcpu_plus + #no vcpu_affinity.positive_test.vcpu_placement.auto + #no vcpu_affinity.positive_test.cputune.offline_hostcpu + #- vcpu_metrics: + #no virsh.vcpu_metrics.normal_test.with_unprivileged_user + - cpumode: + only ppc_cpu_mode.positive_test.host_passthru.match.none.no_model + no libvirt.ppc_cpu_mode.positive_test.host_model.match.none.no_model + #- max_vcpus: + #no max_vcpus.virsh_capabilities + #no virsh.maxvcpus.connect_to_local.with_option.with_kqemu + #no virsh.maxvcpus.connect_to_local.with_option.with_kqemu1 + - schedinfo: + only virsh.schedinfo_qemu_posix.error_test.set_emulator_param.set_emulator_period.value_higher_than_max, virsh.schedinfo_qemu_posix.error_test.set_emulator_param.set_emulator_quota.value_higher_than_max + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/cpu_p3.cfg b/config/tests/guest/libvirt/cpu_p3.cfg new file mode 100644 index 00000000..9cc721fc --- /dev/null +++ b/config/tests/guest/libvirt/cpu_p3.cfg @@ -0,0 +1,172 @@ +include tests-shared.cfg +username = root +password = Aform@fvt +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +nettype = bridge +netdst=virbr0 +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +# Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 +setvcpus_max = 32 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_cpu: + variants: + - nodecpustats: + only virsh.nodecpustats.invalid_option, virsh.nodecpustats.invalid_cpuNum + - cpubasline: + only virsh.cpu_baseline.negative_test.space_option, virsh.cpu_baseline.negative_test.no_option, virsh.cpu_baseline.negative_test.extra_option, virsh.cpu_baseline.negative_test.extra_option1, virsh.cpu_baseline.negative_test.extra_option2 + - emulatorpin: + only virsh.emulatorpin.negative_testing.get_emulatorpin_parameter.running_guest.emulatorpin_options.invalid, virsh.emulatorpin.negative_testing.get_emulatorpin_parameter.shutoff_guest.emulatorpin_options.invalid, virsh.emulatorpin.negative_testing.get_emulatorpin_parameter.shutoff_guest.emulatorpin_options.live, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.live.comma_list, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.live.ranges, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.live.excluding, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.live.single, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.live.noexist.set_by_cmd, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.live.noexist.set_by_xml, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.config.comma_list, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.config.ranges, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.config.excluding, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.config.single, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.config.noexist.set_by_cmd, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.config.noexist.set_by_xml, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.current.comma_list, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.current.ranges, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.current.excluding, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.current.single, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.current.noexist.set_by_cmd, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.running_guest.change_emulatorpin.emulatorpin_options.current.noexist.set_by_xml, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.live.comma_list, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.live.ranges, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.live.excluding, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.live.single, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.live.noexist, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.config.comma_list, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.config.ranges, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.config.excluding, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.config.single, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.config.noexist, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.current.comma_list, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.current.ranges, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.current.excluding, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.current.single, virsh.emulatorpin.negative_testing.set_emulatorpin_parameter.shutoff_guest.change_emulatorpin.emulatorpin_options.current.noexist + - vcpuinfo: + only virsh.vcpuinfo.normal_test.uuid_option, virsh.vcpuinfo.error_test.no_option, virsh.vcpuinfo.error_test.hex_id_option, virsh.vcpuinfo.error_test.invalid_id_option, virsh.vcpuinfo.error_test.unexpected_option, virsh.vcpuinfo.error_test.space_option, virsh.vcpuinfo.error_test.with_libvirtd_stop, virsh.vcpuinfo.error_test.invalid_uuid_uuid, virsh.vcpuinfo.error_test.extra_option + - vcpupin: + only virsh.vcpupin.online.negative_test.no_dom_name, virsh.vcpupin.online.negative_test.dom_name_space, virsh.vcpupin.online.negative_test.dom_not_exists, virsh.vcpupin.online.negative_test.live_current, virsh.vcpupin.online.negative_test.config_current, virsh.vcpupin.online.negative_test.live_when_shutoff, virsh.vcpupin.online.negative_test.out_of_cpu_maxmum, virsh.vcpupin.online.negative_test.negative_cpu_list + - maxvcpus: + only virsh.vcpupin.online.negative_test.dom_not_exists, virsh.maxvcpus.connect_to_local.unexpect_option.with_xyz, virsh.maxvcpus.connect_to_local.unexpect_option.with_xyz1 + - nodecpumap: + only virsh.nodecpumap.unexpect_option + no virsh.nodecpumap.cpu_off_on + - schedinfo: + only virsh.schedinfo_qemu_posix.error_test.invalid_options.invalid_domid, virsh.schedinfo_qemu_posix.error_test.invalid_options.invalid_domuuid, virsh.schedinfo_qemu_posix.error_test.invalid_options.none, virsh.schedinfo_qemu_posix.error_test.invalid_options.hex_domid, virsh.schedinfo_qemu_posix.error_test.additional_args, virsh.schedinfo_qemu_posix.error_test.set_cpu_param.set_cpu_shares.value_none, virsh.schedinfo_qemu_posix.error_test.set_cpu_param.set_cpu_shares.value_invalid, virsh.schedinfo_qemu_posix.error_test.set_cpu_param.set_cpu_shares.readonly, virsh.schedinfo_qemu_posix.error_test.set_emulator_param.set_emulator_period.value_negative, virsh.schedinfo_qemu_posix.error_test.set_emulator_param.set_emulator_period.value_lower_than_min, virsh.schedinfo_qemu_posix.error_test.set_emulator_param.set_emulator_quota.value_lower_than_min, virsh.schedinfo_qemu_posix.error_test.set_global_param.set_global_quota.value_lower_than_min, virsh.schedinfo_qemu_posix.error_test.set_xyz.value_valid, virsh.schedinfo_qemu_posix.error_test.set_xyz.value_invalid, virsh.schedinfo_qemu_posix.error_test.set_none + - cpucompare: + only virsh.cpu_compare.host_cpu.strict_cpu_match.invalid_ref, virsh.cpu_compare.host_cpu.strict_cpu_match.invalid_option, virsh.cpu_compare.guest_cpu.modify_mode.invalid_model, virsh.cpu_compare.guest_cpu.invalid_option + - numatune: + only virsh.numatune.negative_testing.get_numa_parameter.running_guest.options.none, virsh.numatune.negative_testing.get_numa_parameter.running_guest.cgroup.stop, virsh.numatune.negative_testing.get_numa_parameter.shutoff_guest.options.none, virsh.numatune.negative_testing.get_numa_parameter.shutoff_guest.options.config, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_mode.options.config.preferred, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_mode.options.config.interleave, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.comma_list, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.ranges, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.excluding, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.single, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.large_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.minus_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.live.exceed_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.config.comma_list, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.config.ranges, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.config.excluding, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.config.single, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.config.large_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.config.minus_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.comma_list, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.ranges, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.excluding, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.single, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.large_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.minus_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.change_nodeset.options.current.exceed_num, virsh.numatune.negative_testing.set_numa_parameter.running_guest.cgroup.stop, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.live.comma_list, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.live.ranges, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.live.excluding, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.live.single, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.comma_list, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.ranges, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.excluding, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.config.single, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.comma_list, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.ranges, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.excluding, virsh.numatune.negative_testing.set_numa_parameter.shutoff_guest.change_nodeset.options.current.single + - vcpucount: + only virsh.vcpucount.negative_tests.shutoff_test.wrong_option, virsh.vcpucount.negative_tests.shutoff_test.guest_option, virsh.vcpucount.negative_tests.shutoff_test.config_guest_option, virsh.vcpucount.negative_tests.shutoff_test.active_maximum_option, virsh.vcpucount.negative_tests.shutoff_test.live_active_option, virsh.vcpucount.negative_tests.shutoff_test.live_maximum_option, virsh.vcpucount.negative_tests.shutoff_test.live_guest_option, virsh.vcpucount.negative_tests.shutoff_test.config_live_options, virsh.vcpucount.negative_tests.running_test.wrong_option, virsh.vcpucount.negative_tests.running_test.config_guest_option, virsh.vcpucount.negative_tests.running_test.active_maximum_option + - setvcpus: + only virsh.setvcpus.error_test.no_option, virsh.setvcpus.error_test.unexcept_id_option.hex_id_option, virsh.setvcpus.error_test.unexcept_id_option.id_current_live_option, virsh.setvcpus.error_test.unexcept_id_option.invalid_id_option, virsh.setvcpus.error_test.unexpected_domain_option, virsh.setvcpus.error_test.invalid_uuid_option, virsh.setvcpus.error_test.extra_option, virsh.setvcpus.error_test.name_only_option, virsh.setvcpus.error_test.invalid_vcpu_count_is_0, virsh.setvcpus.error_test.invalid_vcpu_count_max, virsh.setvcpus.error_test.shut_off_error_option.live_option, virsh.setvcpus.error_test.shut_off_error_option.live_config_option, virsh.setvcpus.error_test.shut_off_error_option.current_config_option, virsh.setvcpus.error_test.shut_off_error_option.with_topology, virsh.setvcpus.error_test.shut_off_error_option.with_topology + - hotplug: + only libvirt_vcpu_plug_unplug.negative_test.greater_plug_number, libvirt_vcpu_plug_unplug.negative_test.readonly_setvcpu, libvirt_vcpu_plug_unplug.negative_test.no_ga_channel, libvirt_vcpu_plug_unplug.negative_test.no_install_qemuga, libvirt_vcpu_plug_unplug.negative_test.no_start_qemuga, libvirt_vcpu_plug_unplug.negative_test.guest_plug.more_than_current, libvirt_vcpu_plug_unplug.negative_test.guest_plug.more_than_max + no libvirt_vcpu_plug_unplug.negative_test.greater_plug_number + no libvirt_vcpu_plug_unplug.negative_test.readonly_setvcpu + no libvirt_vcpu_plug_unplug.negative_test.no_ga_channel + no libvirt_vcpu_plug_unplug.negative_test.no_install_qemuga + no libvirt_vcpu_plug_unplug.negative_test.no_start_qemuga + no libvirt_vcpu_plug_unplug.negative_test.guest_plug.more_than_current + no libvirt_vcpu_plug_unplug.negative_test.guest_plug.more_than_max + no libvirt_vcpu_plug_unplug.negative_test.greater_plug_number + no libvirt_vcpu_plug_unplug.negative_test.readonly_setvcpu + no libvirt_vcpu_plug_unplug.negative_test.no_ga_channel + no libvirt_vcpu_plug_unplug.negative_test.no_install_qemuga + no libvirt_vcpu_plug_unplug.negative_test.no_start_qemuga + no libvirt_vcpu_plug_unplug.negative_test.guest_plug.more_than_current + no libvirt_vcpu_plug_unplug.negative_test.guest_plug.more_than_max + - timermanagement: + only virsh.domtime.negative.shutdown_vm, virsh.domtime.negative.no_agent + no virsh.domtime.negative.now_sync + no virsh.domtime.negative.time_sync + no virsh.domtime.negative.time_now + no virsh.domtime.negative.set_time_-1 + no virsh.domtime.negative.set_time_too_large + no virsh.domtime.negative.readonly_test.get_time_readonly + no virsh.domtime.negative.readonly_test.set_time_readonly + no virsh.domtime.negative.no_agent_channel + - setvcpu: + only virsh.setvcpu.error_test.unexcept_id_option.hex_id_option, virsh.setvcpu.error_test.unexcept_id_option.id_current_live_option, virsh.setvcpu.error_test.unexcept_id_option.invalid_id_option, virsh.setvcpu.error_test.unexpected_domain_option, virsh.setvcpu.error_test.invalid_uuid_option, virsh.setvcpu.error_test.extra_option, virsh.setvcpu.error_test.name_only_option, virsh.setvcpu.error_test.invalid_vcpu_count_is_0, virsh.setvcpu.error_test.shut_off_error_option.enable_live_option, virsh.setvcpu.error_test.shut_off_error_option.disable_live_option + - guestsmt: + only smt.negative.smt16, smt.negative.smt32, smt.negative.smt5, smt.negative.smt9 + - hotpluggable: + only vcpu_hotpluggable.negative_test.dup_order1, vcpu_hotpluggable.negative_test.dup_order2 + - guestvcpu: + only virsh.guestvcpus.error_test.invalid_dom.no_dom, virsh.guestvcpus.error_test.invalid_dom.err_dom, virsh.guestvcpus.error_test.invalid_cpulist.enable, virsh.guestvcpus.error_test.invalid_cpulist.disable + - cpumodels: + only virsh.cpu_models.negative_test.invalid_arch, virsh.cpu_models.negative_test.invalid_option + #- cpu_mode: + # no libvirt.ppc_cpu_mode.positive_test.host_model.match.none.model.fallback.power7 + # no libvirt.ppc_cpu_mode.positive_test.host_model.match.none.model.fallback.power8 + # no libvirt.ppc_cpu_mode.positive_test.host_model.match.none.model.fallback.power9 + # no libvirt.ppc_cpu_mode.positive_test.custom.match.val.exact.model.fallback.power8 + # no libvirt.ppc_cpu_mode.positive_test.custom.match.val.exact.model.fallback.power9 + # no libvirt.ppc_cpu_mode.positive_test.custom.match.val.strict.model.fallback.power8 + # no libvirt.ppc_cpu_mode.positive_test.custom.match.val.strict.model.fallback.power9 + # no libvirt.ppc_cpu_mode.positive_test.custom.match.val.minimum.model.fallback.power8 + # no libvirt.ppc_cpu_mode.positive_test.custom.match.val.minimum.model.fallback.power9 + # no libvirt.ppc_cpu_mode.negative_test.host_model.match.none.model.default.power42 + # no libvirt.ppc_cpu_mode.negative_test.custom.match.val.exact.model.fallback.power7 + # no libvirt.ppc_cpu_mode.negative_test.custom.match.none.model.default.power42 + #- vcpuaffinity: + #no vcpu_affinity.negative_test.vcpu.outrange_cpuset + #no vcpu_affinity.negative_test.cputune.outrange_cpuset + #no vcpu_affinity.negative_test.cputune.invalid_cpuset + #no vcpu_affinity.negative_test.cputune.duplicate_vcpu + #no vcpu_affinity.negative_test.cputune.none_exist_vcpu + #no vcpu_affinity.negative_test.cputune.offline_hostcpu + - cpustats: + only virsh.cpu_stats.negative_test.vm_is_not_start + no virsh.cpu_stats.positive_test.option1 + no virsh.cpu_stats.positive_test.option2 + no virsh.cpu_stats.positive_test.option3 + no virsh.cpu_stats.positive_test.option4 + no virsh.cpu_stats.positive_test.option5 + no virsh.cpu_stats.positive_test.option6 + no virsh.cpu_stats.positive_test.option7 + no virsh.cpu_stats.positive_test.option8 + no virsh.cpu_stats.positive_test.option9 + no virsh.cpu_stats.positive_test.paused_option + no virsh.cpu_stats.negative_test.no_domain + no virsh.cpu_stats.negative_test.unexpect_domain + no virsh.cpu_stats.negative_test.invalid_domain + no virsh.cpu_stats.negative_test.invalid_start_option1 + no virsh.cpu_stats.negative_test.invalid_start_option2 + no virsh.cpu_stats.negative_test.invalid_start_option3 + no virsh.cpu_stats.negative_test.invalid_start_option4 + no virsh.cpu_stats.negative_test.invalid_start_option5 + no virsh.cpu_stats.negative_test.invalid_start_option6 + no virsh.cpu_stats.negative_test.invalid_start_negative + no virsh.cpu_stats.negative_test.invalid_start_alpha + no virsh.cpu_stats.negative_test.invalid_start_whitespace + no virsh.cpu_stats.negative_test.invalid_start_none + no virsh.cpu_stats.negative_test.invalid_count_alpha + no virsh.cpu_stats.negative_test.invalid_count_option1 + no virsh.cpu_stats.negative_test.invalid_count_option2 + #- hmitest: + # no powerpc_hmi.positive.normal.power8.tb_residue + # no powerpc_hmi.positive.normal.power8.hdec_parity_error + # no powerpc_hmi.positive.normal.power9.tb_residue + # no powerpc_hmi.positive.normal.power9.hdec_parity_error + # no powerpc_hmi.positive.with_save.power8.tb_residue + # no powerpc_hmi.positive.with_save.power8.hdec_parity_error + # no powerpc_hmi.positive.with_save.power9.tb_residue + # no powerpc_hmi.positive.with_save.power9.hdec_parity_error + # no powerpc_hmi.positive.with_suspend.power8.tb_residue + # no powerpc_hmi.positive.with_suspend.power8.hdec_parity_error + # no powerpc_hmi.positive.with_suspend.power9.tb_residue + # no powerpc_hmi.positive.with_suspend.power9.hdec_parity_error + # no powerpc_hmi.positive.power8_compatguest.power9.tb_residue + # no powerpc_hmi.positive.power8_compatguest.power9.hdec_parity_error + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/memory.cfg b/config/tests/guest/libvirt/memory.cfg index a52ea8a3..72576b4a 100644 --- a/config/tests/guest/libvirt/memory.cfg +++ b/config/tests/guest/libvirt/memory.cfg @@ -49,6 +49,9 @@ variants: only virsh.freepages.negative_test - guest_memguest_numa: only guest_numa + # removing below tests as 16M hugepage size only support with Hash. And hash guests are not supported with KVM on PowerVM + # Hence removing them for now + no guest_numa.possitive_test.hugepage.per_node.16M - guest_numa_memory: only numa_memory - guest_remove_32G: diff --git a/config/tests/guest/libvirt/memory_p1.cfg b/config/tests/guest/libvirt/memory_p1.cfg new file mode 100644 index 00000000..583d791f --- /dev/null +++ b/config/tests/guest/libvirt/memory_p1.cfg @@ -0,0 +1,87 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +align_mem_values = "yes" + +variants: + - guest_import_32G: + #Guest with 32G Memory + mem = 32768 + only unattended_install.import.import.default_install.aio_native + + - guest_memfreecell: + only virsh.freecell.libvirton.expected_options.no_option,virsh.freecell.libvirton.expected_options.expected_option_all,virsh.freecell.libvirton.expected_options.expected_args_0,virsh.freecell.libvirtoff.expected_options.no_option,virsh.freecell.libvirtoff.expected_options.expected_option_all,virsh.freecell.libvirtoff.expected_options.expected_args_0 + + - guest_memguest_numa: + only guest_numa.possitive_test.no_hugepage.no_mem_backend.topology.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.no_hugepage.no_mem_backend.no_topo.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.topology.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.topology.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.topology.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.topology.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.no_numatune_memnode.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.no_numatune_memnode.numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.no_numatune_memnode.no_numatune_mem,guest_numa.misc_test.vcpu_fill.set_to,guest_numa.misc_test.vcpu_fill.set_not_to + + - guest_numa_memory: + only numa_memory.possitive_test.no_vcpu.mem_auto.strict,numa_memory.possitive_test.no_vcpu.mem_auto.interleave,numa_memory.possitive_test.no_vcpu.mem_nodeset.node1.strict,numa_memory.possitive_test.no_vcpu.mem_nodeset.node1.preferred,numa_memory.possitive_test.vcpu.vcpu_auto.mem_auto.strict,numa_memory.possitive_test.vcpu.vcpu_auto.mem_auto.interleave,numa_memory.possitive_test.vcpu.vcpu_auto.mem_nodeset.node1.strict,numa_memory.possitive_test.vcpu.vcpu_auto.mem_nodeset.node1.preferred,numa_memory.possitive_test.vcpu.vcpu_static.mem_auto.strict,numa_memory.possitive_test.vcpu.vcpu_static.mem_auto.interleave,numa_memory.possitive_test.vcpu.vcpu_static.mem_nodeset.node1.strict,numa_memory.possitive_test.vcpu.vcpu_static.mem_nodeset.node1.preferred + + - guest_remove_32G: + only remove_guest.without_disk + + - guest_import_4G: + #Guest with 4G Memory + mem = 4096 + only unattended_install.import.import.default_install.aio_native + + - guest_memhotplug: + only libvirt_mem.positive_test.mem_basic.cold_plug_discard + no libvirt_mem.positive_test.mem_basic.discard,libvirt_mem.positive_test.memory.hot.plug.default,libvirt_mem.positive_test.memory.hot.plug.max_slots.without_reboot,libvirt_mem.positive_test.memory.hot.plug.max_slots.with_rand_reboot,libvirt_mem.positive_test.memory.hot.unplug.default,libvirt_mem.positive_test.memory.hot.unplug.max_slots.without_reboot,libvirt_mem.positive_test.memory.hot.unplug.max_slots.with_rand_reboot,libvirt_mem.positive_test.memory.cold.plug.default,libvirt_mem.positive_test.memory.cold.plug.max_slots.without_reboot,libvirt_mem.positive_test.memory.cold.plug.max_slots.with_rand_reboot,libvirt_mem.positive_test.memory.cold.unplug.default,libvirt_mem.positive_test.without_numa_save_restore + + - guest_setmem: + only virsh.setmem.valid_options.running.half_mem.domid.dom_opt_size_opt.cmd_flag_live,virsh.setmem.valid_options.running.half_mem.domid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.cmd_flag_live,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.half_mem.domname.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.running.half_mem.domname.dom_opt_size_opt.cmd_flag_live,virsh.setmem.valid_options.running.half_mem.domname.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.half_mem.domuuid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.running.half_mem.domuuid.dom_arg_size_arg.cmd_flag_live,virsh.setmem.valid_options.running.half_mem.domuuid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.half_mem.domuuid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.running.half_mem.domuuid.dom_opt_size_opt.cmd_flag_live,virsh.setmem.valid_options.running.half_mem.domuuid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.same_mem.domid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.running.same_mem.domid.dom_arg_size_arg.cmd_flag_live,virsh.setmem.valid_options.running.same_mem.domid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.same_mem.domid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.running.same_mem.domid.dom_opt_size_opt.cmd_flag_live,virsh.setmem.valid_options.running.same_mem.domid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.cmd_flag_live,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.same_mem.domname.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.running.same_mem.domname.dom_opt_size_opt.cmd_flag_live,virsh.setmem.valid_options.running.same_mem.domname.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.same_mem.domuuid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.running.same_mem.domuuid.dom_arg_size_arg.cmd_flag_live,virsh.setmem.valid_options.running.same_mem.domuuid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.same_mem.domuuid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.running.same_mem.domuuid.dom_opt_size_opt.cmd_flag_live,virsh.setmem.valid_options.running.same_mem.domuuid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.memballoon_option.none_model + no virsh.setmem.valid_options.running.half_mem.domid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.running.half_mem.domid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.running.half_mem.domid.dom_arg_size_arg.cmd_flag_live,virsh.setmem.valid_options.running.half_mem.domid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.inactive.half_mem.domname.dom_arg_size_arg.cmd_flag_config,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.save.before_setmem,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.save.after_setmem,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.managedsave.before_setmem,virsh.setmem.valid_options.running.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.managedsave.after_setmem,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.save.before_setmem,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.save.after_setmem,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.managedsave.before_setmem,virsh.setmem.valid_options.running.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.managedsave.after_setmem + + - guest_numa_preferred_undefine: + only numa_preferred_undefine.default + + - guest_dommemstat: + only virsh.dommemstat.normal_test.paused_option + + - guest_libvirt_hooks: + only libvirt_hooks.vm.start_stop,libvirt_hooks.vm.libvirtd_t,libvirt_hooks.vm.scale_test + no libvirt_hooks.vm.save_restore.basic_test,libvirt_hooks.vm.managedsave_t.basic_test + + - guest_hugepage: + only libvirt_hugepage.normal.with_mb.trans_enable.static_nonzero.umount_hugetlbfs + no libvirt_hugepage.normal.with_mb.trans_enable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.stress.with_mb.trans_enable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.unixbench.with_mb.trans_enable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.unixbench.with_mb.trans_disable.static_nonzero.mount_hugetlbfs + + - guest_remove_4G: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/memory_p2.cfg b/config/tests/guest/libvirt/memory_p2.cfg new file mode 100644 index 00000000..61d82ddf --- /dev/null +++ b/config/tests/guest/libvirt/memory_p2.cfg @@ -0,0 +1,83 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +align_mem_values = "yes" + +variants: + - guest_import_32G: + #Guest with 32G Memory + mem = 32768 + only unattended_install.import.import.default_install.aio_native + + - guest_memguest_numa: + only guest_numa.possitive_test.no_hugepage.mem_backend.topology.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.topology.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.topology.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.no_hugepage.mem_backend.no_topo.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.topology.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.hugepage.per_node.2M.no_topo.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.topology.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.hugepage.per_node.1G.no_topo.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.hugepage.host_total.topology.numatune_memnode.m_interleave.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.numatune_memnode.m_strict.numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.numatune_memnode.m_strict.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.numatune_memnode.m_preferred.numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.numatune_memnode.m_preferred.no_numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.numatune_memnode.m_interleave.numatune_mem,guest_numa.possitive_test.hugepage.host_total.no_topo.numatune_memnode.m_interleave.no_numatune_mem + + - guest_numa_memory: + only numa_memory.possitive_test.no_vcpu.mem_nodeset.node2.strict,numa_memory.possitive_test.no_vcpu.mem_nodeset.node2.interleave,numa_memory.possitive_test.vcpu.vcpu_auto.mem_nodeset.node2.strict,numa_memory.possitive_test.vcpu.vcpu_auto.mem_nodeset.node2.interleave,numa_memory.possitive_test.vcpu.vcpu_static.mem_nodeset.node2.strict,numa_memory.possitive_test.vcpu.vcpu_static.mem_nodeset.node2.interleave + + - guest_remove_32G: + only remove_guest.without_disk + + - guest_import_4G: + #Guest with 4G Memory + mem = 4096 + only unattended_install.import.import.default_install.aio_native + + - guest_memhotplug: + only libvirt_mem.positive_test.align_256m.cold_plug + no libvirt_mem.positive_test.mem_basic.default,libvirt_mem.positive_test.memory.cold.unplug.max_slots.without_reboot,libvirt_mem.positive_test.memory.cold.unplug.max_slots.with_rand_reboot,libvirt_mem.positive_test.memory.cold.detach_device_alias.default,libvirt_mem.positive_test.align_256m.hot_plug + + - guest_setmem: + only virsh.setmem.valid_options.inactive.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.half_mem.domname.dom_opt_size_opt.cmd_flag_config,virsh.setmem.valid_options.inactive.half_mem.domname.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.half_mem.domuuid.dom_arg_size_arg.cmd_flag_config,virsh.setmem.valid_options.inactive.half_mem.domuuid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.half_mem.domuuid.dom_opt_size_opt.cmd_flag_config,virsh.setmem.valid_options.inactive.half_mem.domuuid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.same_mem.domname.dom_arg_size_arg.cmd_flag_config,virsh.setmem.valid_options.inactive.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.same_mem.domname.dom_opt_size_opt.cmd_flag_config,virsh.setmem.valid_options.inactive.same_mem.domname.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.same_mem.domuuid.dom_arg_size_arg.cmd_flag_config,virsh.setmem.valid_options.inactive.same_mem.domuuid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.inactive.same_mem.domuuid.dom_opt_size_opt.cmd_flag_config,virsh.setmem.valid_options.inactive.same_mem.domuuid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.half_mem.domid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.paused.half_mem.domid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.half_mem.domid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.paused.half_mem.domid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.half_mem.domname.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.paused.half_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.half_mem.domname.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.paused.half_mem.domname.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.half_mem.domuuid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.paused.half_mem.domuuid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.half_mem.domuuid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.paused.half_mem.domuuid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.same_mem.domid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.paused.same_mem.domid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.same_mem.domid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.paused.same_mem.domid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.same_mem.domname.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.paused.same_mem.domname.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.same_mem.domname.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.paused.same_mem.domname.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.same_mem.domuuid.dom_arg_size_arg.no_cmd_flag,virsh.setmem.valid_options.paused.same_mem.domuuid.dom_arg_size_arg.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.valid_options.paused.same_mem.domuuid.dom_opt_size_opt.no_cmd_flag,virsh.setmem.valid_options.paused.same_mem.domuuid.dom_opt_size_opt.cmd_flag_current.manipulate_action.none.no_action,virsh.setmem.memballoon_option.remove_driver,virsh.setmem.memballoon_option.with_packed_on + + - guest_setmaxmem: + only virsh.setmaxmem.normal_test.no_option.half_mem.domname.dom_arg_size_arg,virsh.setmaxmem.normal_test.no_option.half_mem.domname.dom_opt_size_opt,virsh.setmaxmem.normal_test.no_option.half_mem.domuuid.dom_arg_size_arg,virsh.setmaxmem.normal_test.no_option.half_mem.domuuid.dom_opt_size_opt,virsh.setmaxmem.normal_test.no_option.same_mem.domname.dom_arg_size_arg,virsh.setmaxmem.normal_test.no_option.same_mem.domname.dom_opt_size_opt,virsh.setmaxmem.normal_test.no_option.same_mem.domuuid.dom_arg_size_arg,virsh.setmaxmem.normal_test.no_option.same_mem.domuuid.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.running.half_mem.domname.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.running.half_mem.domname.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.running.half_mem.domuuid.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.running.half_mem.domuuid.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.running.same_mem.domname.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.running.same_mem.domname.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.running.same_mem.domuuid.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.running.same_mem.domuuid.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.shutoff.half_mem.domname.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.shutoff.half_mem.domname.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.shutoff.half_mem.domuuid.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.shutoff.half_mem.domuuid.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.shutoff.same_mem.domname.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.shutoff.same_mem.domname.dom_opt_size_opt,virsh.setmaxmem.normal_test.config.shutoff.same_mem.domuuid.dom_arg_size_arg,virsh.setmaxmem.normal_test.config.shutoff.same_mem.domuuid.dom_opt_size_opt + + - guest_dommemstat: + only virsh.dommemstat.normal_test.id_option,virsh.dommemstat.normal_test.name_option,virsh.dommemstat.normal_test.uuid_option + + - guest_libvirt_hooks: + only libvirt_hooks.vm.daemon_t.exit_0,libvirt_hooks.vm.daemon_t.exit_1 + no libvirt_hooks.vm.network_t,libvirt_hooks.vm.save_restore.domainxml_test,libvirt_hooks.vm.managedsave_t.domainxml_test + + - guest_hugepage: + only libvirt_hugepage.normal.with_mb.trans_enable.static_zero.umount_hugetlbfs,libvirt_hugepage.normal.with_mb.trans_disable.static_nonzero.umount_hugetlbfs,libvirt_hugepage.normal.with_mb.trans_disable.static_zero.umount_hugetlbfs + no libvirt_hugepage.normal.with_mb.trans_disable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.stress.with_mb.trans_disable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_enable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_enable.static_nonzero.umount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_enable.static_zero.mount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_enable.static_zero.umount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_disable.static_nonzero.mount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_disable.static_nonzero.umount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_disable.static_zero.mount_hugetlbfs,libvirt_hugepage.normal.without_mb.trans_disable.static_zero.umount_hugetlbfs + + - guest_remove_4G: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/memory_p3.cfg b/config/tests/guest/libvirt/memory_p3.cfg new file mode 100644 index 00000000..6fd414ef --- /dev/null +++ b/config/tests/guest/libvirt/memory_p3.cfg @@ -0,0 +1,84 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +align_mem_values = "yes" + +variants: + - guest_import_32G: + #Guest with 32G Memory + mem = 32768 + only unattended_install.import.import.default_install.aio_native + + - guest_memfreecell: + only virsh.freecell.libvirton.error_test.unexpected_args_xyz,virsh.freecell.libvirton.error_test.unexpected_args_12345,virsh.freecell.libvirton.error_test.unexpected_option_xyz,virsh.freecell.libvirtoff.error_test.unexpected_args_xyz,virsh.freecell.libvirtoff.error_test.unexpected_args_12345,virsh.freecell.libvirtoff.error_test.unexpected_option_xyz + + - guest_memfreepages: + only virsh.freepages.negative_test.invalid_option,virsh.freepages.negative_test.mutually_exclusive_option,virsh.freepages.negative_test.out_of_range_cellno,virsh.freepages.negative_test.invalid_cellno,virsh.freepages.negative_test.invalid_page_size + + - guest_memguest_numa: + only guest_numa.negative_test.strict_memnode_insufficent + + - guest_numa_memory: + only numa_memory.negative_test.out_range.strict,numa_memory.negative_test.out_range.preferred,numa_memory.negative_test.out_range.interleave,numa_memory.negative_test.preferred_multi + + - guest_remove_32G: + only remove_guest.without_disk + + - guest_import_4G: + #Guest with 4G Memory + mem = 4096 + only unattended_install.import.import.default_install.aio_native + + - guest_memhotplug: + only libvirt_mem.positive_test.no_attach,libvirt_mem.negative_test.start_error.invalid_slot,libvirt_mem.negative_test.start_error.invalid_address,libvirt_mem.negative_test.start_error.invalid_vm_node,libvirt_mem.negative_test.start_error.invalid_host_node,libvirt_mem.negative_test.start_error.without_numa + no libvirt_mem.negative_test.attach_error.attach_invalid_type,libvirt_mem.negative_test.attach_error.attach_duplicate_node,libvirt_mem.negative_test.attach_error.attach_many_times,libvirt_mem.negative_test.attach_error.attach_gt_max,libvirt_mem.negative_test.detach_error.detach_invalid_type,libvirt_mem.negative_test.detach_error.detach_duplicate_node,libvirt_mem.negative_test.detach_error.detach_many_times,libvirt_mem.negative_test.detach_error.detach_invalid_size,libvirt_mem.negative_test.setmem_error.with_numa + + - guest_setmem: + only virsh.setmem.invalid_options.shut_off.empty_size.missing_name,virsh.setmem.invalid_options.shut_off.empty_size.blank_name,virsh.setmem.invalid_options.shut_off.empty_size.nonsense_name,virsh.setmem.invalid_options.shut_off.empty_size.outrange_domid,virsh.setmem.invalid_options.shut_off.empty_size.bad_domuuid,virsh.setmem.invalid_options.shut_off.zero_size.missing_name,virsh.setmem.invalid_options.shut_off.zero_size.blank_name,virsh.setmem.invalid_options.shut_off.zero_size.nonsense_name,virsh.setmem.invalid_options.shut_off.zero_size.outrange_domid,virsh.setmem.invalid_options.shut_off.zero_size.bad_domuuid,virsh.setmem.invalid_options.shut_off.small_size.missing_name,virsh.setmem.invalid_options.shut_off.small_size.blank_name,virsh.setmem.invalid_options.shut_off.small_size.nonsense_name,virsh.setmem.invalid_options.shut_off.small_size.outrange_domid,virsh.setmem.invalid_options.shut_off.small_size.bad_domuuid,virsh.setmem.invalid_options.shut_off.big_size.missing_name,virsh.setmem.invalid_options.shut_off.big_size.blank_name,virsh.setmem.invalid_options.shut_off.big_size.nonsense_name,virsh.setmem.invalid_options.shut_off.big_size.outrange_domid,virsh.setmem.invalid_options.shut_off.big_size.bad_domuuid,virsh.setmem.invalid_options.shut_off.double_mem.missing_name,virsh.setmem.invalid_options.shut_off.double_mem.blank_name,virsh.setmem.invalid_options.shut_off.double_mem.nonsense_name,virsh.setmem.invalid_options.shut_off.double_mem.outrange_domid,virsh.setmem.invalid_options.shut_off.double_mem.bad_domuuid,virsh.setmem.invalid_options.shut_off.missing_size.missing_name,virsh.setmem.invalid_options.shut_off.missing_size.blank_name,virsh.setmem.invalid_options.shut_off.missing_size.nonsense_name,virsh.setmem.invalid_options.shut_off.missing_size.outrange_domid,virsh.setmem.invalid_options.shut_off.missing_size.bad_domuuid,virsh.setmem.invalid_options.libvirtd_stop.empty_size.missing_name,virsh.setmem.invalid_options.libvirtd_stop.empty_size.blank_name,virsh.setmem.invalid_options.libvirtd_stop.empty_size.nonsense_name,virsh.setmem.invalid_options.libvirtd_stop.empty_size.outrange_domid,virsh.setmem.invalid_options.libvirtd_stop.empty_size.bad_domuuid,virsh.setmem.invalid_options.libvirtd_stop.zero_size.missing_name,virsh.setmem.invalid_options.libvirtd_stop.zero_size.blank_name,virsh.setmem.invalid_options.libvirtd_stop.zero_size.nonsense_name,virsh.setmem.invalid_options.libvirtd_stop.zero_size.outrange_domid,virsh.setmem.invalid_options.libvirtd_stop.zero_size.bad_domuuid,virsh.setmem.invalid_options.libvirtd_stop.small_size.missing_name,virsh.setmem.invalid_options.libvirtd_stop.small_size.blank_name,virsh.setmem.invalid_options.libvirtd_stop.small_size.nonsense_name,virsh.setmem.invalid_options.libvirtd_stop.small_size.outrange_domid,virsh.setmem.invalid_options.libvirtd_stop.small_size.bad_domuuid,virsh.setmem.invalid_options.libvirtd_stop.big_size.missing_name,virsh.setmem.invalid_options.libvirtd_stop.big_size.blank_name,virsh.setmem.invalid_options.libvirtd_stop.big_size.nonsense_name,virsh.setmem.invalid_options.libvirtd_stop.big_size.outrange_domid,virsh.setmem.invalid_options.libvirtd_stop.big_size.bad_domuuid,virsh.setmem.invalid_options.libvirtd_stop.double_mem.missing_name,virsh.setmem.invalid_options.libvirtd_stop.double_mem.blank_name,virsh.setmem.invalid_options.libvirtd_stop.double_mem.nonsense_name,virsh.setmem.invalid_options.libvirtd_stop.double_mem.outrange_domid,virsh.setmem.invalid_options.libvirtd_stop.double_mem.bad_domuuid,virsh.setmem.invalid_options.libvirtd_stop.missing_size.missing_name,virsh.setmem.invalid_options.libvirtd_stop.missing_size.blank_name,virsh.setmem.invalid_options.libvirtd_stop.missing_size.nonsense_name,virsh.setmem.invalid_options.libvirtd_stop.missing_size.outrange_domid,virsh.setmem.invalid_options.libvirtd_stop.missing_size.bad_domuuid,virsh.setmem.invalid_options.addtional_args.empty_size.missing_name,virsh.setmem.invalid_options.addtional_args.empty_size.blank_name,virsh.setmem.invalid_options.addtional_args.empty_size.nonsense_name,virsh.setmem.invalid_options.addtional_args.empty_size.outrange_domid,virsh.setmem.invalid_options.addtional_args.empty_size.bad_domuuid,virsh.setmem.invalid_options.addtional_args.zero_size.missing_name,virsh.setmem.invalid_options.addtional_args.zero_size.blank_name,virsh.setmem.invalid_options.addtional_args.zero_size.nonsense_name,virsh.setmem.invalid_options.addtional_args.zero_size.outrange_domid,virsh.setmem.invalid_options.addtional_args.zero_size.bad_domuuid,virsh.setmem.invalid_options.addtional_args.small_size.missing_name,virsh.setmem.invalid_options.addtional_args.small_size.blank_name,virsh.setmem.invalid_options.addtional_args.small_size.nonsense_name,virsh.setmem.invalid_options.addtional_args.small_size.outrange_domid,virsh.setmem.invalid_options.addtional_args.small_size.bad_domuuid,virsh.setmem.invalid_options.addtional_args.big_size.missing_name,virsh.setmem.invalid_options.addtional_args.big_size.blank_name,virsh.setmem.invalid_options.addtional_args.big_size.nonsense_name,virsh.setmem.invalid_options.addtional_args.big_size.outrange_domid,virsh.setmem.invalid_options.addtional_args.big_size.bad_domuuid,virsh.setmem.invalid_options.addtional_args.double_mem.missing_name,virsh.setmem.invalid_options.addtional_args.double_mem.blank_name,virsh.setmem.invalid_options.addtional_args.double_mem.nonsense_name,virsh.setmem.invalid_options.addtional_args.double_mem.outrange_domid,virsh.setmem.invalid_options.addtional_args.double_mem.bad_domuuid,virsh.setmem.invalid_options.addtional_args.missing_size.missing_name,virsh.setmem.invalid_options.addtional_args.missing_size.blank_name,virsh.setmem.invalid_options.addtional_args.missing_size.nonsense_name,virsh.setmem.invalid_options.addtional_args.missing_size.outrange_domid,virsh.setmem.invalid_options.addtional_args.missing_size.bad_domuuid,virsh.setmem.invalid_old_libvirt.dom_opt_size_arg,virsh.setmem.invalid_old_libvirt.dom_arg_size_opt,virsh.setmem.readonly + + - guest_setmaxmem: + only virsh.setmaxmem.error_test.missing_name,virsh.setmaxmem.error_test.blank_name,virsh.setmaxmem.error_test.nonsense_name,virsh.setmaxmem.error_test.outrange_domid,virsh.setmaxmem.error_test.bad_domuuid,virsh.setmaxmem.error_test.empty_size,virsh.setmaxmem.error_test.zero_size,virsh.setmaxmem.error_test.small_size,virsh.setmaxmem.error_test.big_size,virsh.setmaxmem.error_test.double_mem,virsh.setmaxmem.error_test.missing_size,virsh.setmaxmem.error_test.addtional_args,virsh.setmaxmem.error_test.readonly.running,virsh.setmaxmem.error_test.readonly.shutoff + + - guest_dommemstat: + only virsh.dommemstat.error_test.no_option,virsh.dommemstat.error_test.hex_id_option,virsh.dommemstat.error_test.invalid_id_option,virsh.dommemstat.error_test.unexpect_option,virsh.dommemstat.error_test.invalid_uuid_option,virsh.dommemstat.error_test.extra_option,virsh.dommemstat.error_test.shutoff_option,virsh.dommemstat.error_test.with_libvirtd_stop + + - guest_libvirt_hooks: + only libvirt_hooks.vm.error_test.start_error + + - guest_remove_4G: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/migrate_p1.cfg b/config/tests/guest/libvirt/migrate_p1.cfg new file mode 100644 index 00000000..24905c6e --- /dev/null +++ b/config/tests/guest/libvirt/migrate_p1.cfg @@ -0,0 +1,119 @@ +include tests-shared.cfg + +disk_target = sda +setup_local_nfs = yes +username = root +password = Aform@fvt +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +migrate_main_vm = "${main_vm}" + +# Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +no spapr-vlan +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 16 +vcpu_cores = 16 +vcpu_threads = 1 +vcpu_sockets = 1 +login_timeout = 600 +# 8G +mem = 8192 + +# NFS related configurations +storage_type = nfs +nfs_mount_dir=/home/migrate/sharing +nfs_mount_options="rw" +export_options=rw,sync,no_root_squash +nfs_mount_src=/home/migrate/NFS +export_dir=/home/migrate/NFS + +# libvirt (host information for remote testcases) +local_ip = "10.48.36.118" +local_pwd = "Aform@fvt" +remote_ip = "10.48.36.121" +remote_user = root + +# Default password is same as local_pwd +remote_pwd = "Aform@fvt" + +# Migration source and destination machine details +migrate_source_host = "${local_ip}" +migrate_source_pwd = "${local_pwd}" +migrate_dest_host = "${remote_ip}" +migrate_dest_pwd = "${remote_pwd}" + +# This param required for testcases with hugepages +hugepage_force_allocate = "yes" + +# These params required for CPU hotplug/unplug testcases +cpu_topology_sockets = "4" +cpu_topology_cores = "16" +cpu_topology_threads = "1" + +ping_count = 10 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + - guest_migration: + only virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back.with_HP_only.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.migrate_postcopy.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_offline.with_inactive_guest.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_offline.with_active_guest.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_suspend.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_change-protection.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_change-protection.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_timeout.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_timeout_short.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_timeout_short.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_dname.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_dname.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_xml.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_online.normal_test.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_online.with_HP_only.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_online_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_online_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_online_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_online_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_online_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_xml_with_dname.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_xml_with_dname.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_vm_suspend_live.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_vm_suspend_online.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_timeout_suspend.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_vm_shutdown_live.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_vm_shutdown_online.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_libvirtd_stop_online.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_compressed.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_compressed.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_seamless_migration_with_graphicsuri.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_domain_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_domain_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_domain_missing.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_domain_missing.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_desturi_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_desturi_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_desturi_missing.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_desturi_missing.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_migrateuri_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_migrateuri_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_timeout_invalid.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_timeout_invalid.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_timeout_online.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_timeout_online.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_dname_exist.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_xml_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_xml_nonexist.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_xml_with_same_dname.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_xml_with_same_dname.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_xml_with_diff_dname.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_xml_with_diff_dname.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.with_postcopy + no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy + no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.non_compat_migration.with_postcopy + no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_compressed.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_dname_exist.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy + no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.non_compat_migration.default + no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_timeout_short.without_cpu_hotplug.compat_migration.non_compat_migration.default + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/migrate_p2.cfg b/config/tests/guest/libvirt/migrate_p2.cfg new file mode 100644 index 00000000..6aac399e --- /dev/null +++ b/config/tests/guest/libvirt/migrate_p2.cfg @@ -0,0 +1,2289 @@ +include tests-shared.cfg + +disk_target = sda +setup_local_nfs = yes +username = root +password = Aform@fvt +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +migrate_main_vm = "${main_vm}" + +# Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +no spapr-vlan +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 16 +vcpu_cores = 16 +vcpu_threads = 1 +vcpu_sockets = 1 +login_timeout = 600 +# 8G +mem = 8192 + +# NFS related configurations +storage_type = nfs +nfs_mount_dir=/home/migrate/sharing +nfs_mount_options="rw" +export_options=rw,sync,no_root_squash +nfs_mount_src=/home/migrate/NFS +export_dir=/home/migrate/NFS + +# libvirt (host information for remote testcases) +local_ip = "10.48.36.118" +local_pwd = "Aform@fvt" +remote_ip = "10.48.36.121" +remote_user = root + +# Default password is same as local_pwd +remote_pwd = "Aform@fvt" + +# Migration source and destination machine details +migrate_source_host = "${local_ip}" +migrate_source_pwd = "${local_pwd}" +migrate_dest_host = "${remote_ip}" +migrate_dest_pwd = "${remote_pwd}" + +# This param required for testcases with hugepages +hugepage_force_allocate = "yes" + +# These params required for CPU hotplug/unplug testcases +cpu_topology_sockets = "4" +cpu_topology_cores = "16" +cpu_topology_threads = "1" + +ping_count = 10 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + - guest_migration: + variants: + - migrate: + only virsh.migrate_compcache.get_compcache.positive_test.live_vm.min_size, virsh.migrate_compcache.get_compcache.positive_test.paused_vm.min_size, virsh.migrate_compcache.set_compcache.positive_test.live_vm.min_size, virsh.migrate_compcache.set_compcache.positive_test.live_vm.max_size, virsh.migrate_compcache.set_compcache.positive_test.paused_vm.min_size, virsh.migrate_compcache.set_compcache.positive_test.paused_vm.max_size, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default, virsh.migrate.there_p2p.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_p2p.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_persistent.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_undefinesource.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_suspend_undefinesource.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_with_scsi_disk.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_verbose.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy + no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.non_compat_migration.default + no virsh.migrate.there_p2p.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_persistent.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_with_scsi_disk.without_cpu_hotplug.compat_migration.non_compat_migration.default + no virsh.migrate.there_verbose.without_cpu_hotplug.compat_migration.non_compat_migration.default + - migration: + only virsh.migration.machine_type.default.migrate_precopy.online, virsh.migration.machine_type.default.migrate_precopy.offline + no virsh.migration.machine_type.default.migrate_precopy.live + no virsh.migration.machine_type.default.migrate_postcopy.postcopy + no virsh.migration.machine_type.default.migrate_postcopy.postcopy_after_precopy + #- migrate_virtio_scsi: + # no virsh.migrate_virtio_scsi.attach_before_migration.single_disk.disk_device.file_source.format_raw + # no virsh.migrate_virtio_scsi.attach_before_migration.single_disk.disk_device.file_source.format_qcow2 + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.disk_device.file_source.format_raw + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.disk_device.file_source.format_qcow2 + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.disk_device.block_source.format_raw + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.disk_device.block_source.format_qcow2 + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.lun_device.file_source.format_raw + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.lun_device.file_source.format_qcow2 + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.lun_device.block_source.format_raw + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.1.lun_device.block_source.format_qcow2 + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.256.lun_device.file_source.format_raw + # no virsh.migrate_virtio_scsi.attach_before_migration.multiple_disks.256.lun_device.file_source.format_qcow2 + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.disk_device.file_source.format_raw + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.disk_device.file_source.format_qcow2 + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.disk_device.block_source.format_raw + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.disk_device.block_source.format_qcow2 + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.lun_device.file_source.format_raw + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.lun_device.file_source.format_qcow2 + # no virsh.migrate_virtio_scsi.migrating_attachment.multiple_disks.1.lun_device.block_source.format_raw + #- migrate_setmaxdowntime: + # no virsh.migrate_setmaxdowntime.normal_test.valid_uuid.with_postcopy + # no virsh.migrate_setmaxdowntime.normal_test.valid_uuid.without_postcopy + # no virsh.migrate_setmaxdowntime.normal_test.valid_id.with_postcopy + # no virsh.migrate_setmaxdowntime.normal_test.valid_id.without_postcopy + # no virsh.migrate_set_get_speed.normal_test.zero + # no virsh.migrate_set_get_speed.normal_test.one + # no virsh.migrate_set_get_speed.normal_test.default + # no virsh.migrate_set_get_speed.normal_test.uint32_max + # no virsh.migrate_set_get_speed.normal_test.int64_max + # no virsh.migrate_set_get_speed.error_test.space_option + # no virsh.migrate_set_get_speed.error_test.no_option + # no virsh.migrate_set_get_speed.error_test.invalid_option + # no virsh.migrate_set_get_speed.error_test.negone + # no virsh.migrate_set_get_speed.error_test.additional_option + # no virsh.migrate_set_get_speed.error_test.uint64_max + #- migrate_option_mix: + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.no_persistent_xml.no_xml.no_dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.no_persistent.no_xml.no_dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + # - migration_p10_p11: + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default +  #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default +  #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p11.from_power11.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power10.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p11.from_power11.default + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/migrate_p3.cfg b/config/tests/guest/libvirt/migrate_p3.cfg new file mode 100644 index 00000000..c81fdb2c --- /dev/null +++ b/config/tests/guest/libvirt/migrate_p3.cfg @@ -0,0 +1,1721 @@ +include tests-shared.cfg + +disk_target = sda +setup_local_nfs = yes +username = root +password = Aform@fvt +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +migrate_main_vm = "${main_vm}" + +# Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +no spapr-vlan +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +login_timeout = 600 +# 8G +mem = 8192 + +# NFS related configurations +storage_type = nfs +nfs_mount_dir=/home/migrate/sharing +nfs_mount_options="rw" +export_options=rw,sync,no_root_squash +nfs_mount_src=/home/migrate/NFS +export_dir=/home/migrate/NFS + +# libvirt (host information for remote testcases) +local_ip = "10.48.36.118" +local_pwd = "Aform@fvt" +remote_ip = "10.48.36.121" +remote_user = root + +# Default password is same as local_pwd +remote_pwd = "Aform@fvt" + +# Migration source and destination machine details +migrate_source_host = "${local_ip}" +migrate_source_pwd = "${local_pwd}" +migrate_dest_host = "${remote_ip}" +migrate_dest_pwd = "${remote_pwd}" + +# This param required for testcases with hugepages +hugepage_force_allocate = "yes" + +# These params required for CPU hotplug/unplug testcases +cpu_topology_sockets = "4" +cpu_topology_cores = "16" +cpu_topology_threads = "1" + +ping_count = 10 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + - guest_migration: + variants: + - migrate_compcache: + only virsh.migrate_compcache.get_compcache.negative_test.invalid_vm, virsh.migrate_compcache.get_compcache.negative_test.shutoff_vm, virsh.migrate_compcache.set_compcache.negative_test.invalid_vm, virsh.migrate_compcache.set_compcache.negative_test.shutoff_vm, virsh.migrate_compcache.set_compcache.negative_test.invalid_size.nondigit_size, virsh.migrate_compcache.set_compcache.negative_test.invalid_size.empty_size, virsh.migrate_compcache.set_compcache.negative_test.invalid_size.zero_size, virsh.migrate_compcache.set_compcache.negative_test.invalid_size.small_size, virsh.migrate_compcache.set_compcache.negative_test.invalid_size.large_size, virsh.migrate_compcache.set_compcache.negative_test.invalid_size.huge_size + no virsh.migrate_copy_storage.error_test.space_occupied.copy_storage_inc.file_image + no virsh.migrate_copy_storage.error_test.space_occupied.copy_storage_all.file_image + no virsh.migrate_copy_storage.error_test.nonexist_image.copy_storage_inc.file_image + no virsh.migrate_copy_storage.error_test.nonexist_image.copy_storage_all.file_image + no virsh.migrate_copy_storage.error_test.migration_interupted.copy_storage_inc.file_image + no virsh.migrate_copy_storage.error_test.migration_interupted.copy_storage_all.file_image + - migrate_setmaxdowntime: + only virsh.migrate_setmaxdowntime.error_test.invalid_uuid.with_postcopy, virsh.migrate_setmaxdowntime.error_test.invalid_uuid.without_postcopy, virsh.migrate_setmaxdowntime.error_test.downtime_zero.with_postcopy, virsh.migrate_setmaxdowntime.error_test.downtime_zero.without_postcopy, virsh.migrate_setmaxdowntime.error_test.none_downtime.with_postcopy, virsh.migrate_setmaxdowntime.error_test.none_downtime.without_postcopy, virsh.migrate_setmaxdowntime.error_test.extra_args.with_postcopy, virsh.migrate_setmaxdowntime.error_test.extra_args.without_postcopy, virsh.migrate_setmaxdowntime.error_test.do_not_migrate.without_postcopy, virsh.migrate_setmaxdowntime.error_test.vm_shutdown.with_postcopy, virsh.migrate_setmaxdowntime.error_test.vm_shutdown.without_postcopy + - migrate: + only virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_unsafe.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy, virsh.migrate.there_unsafe.without_cpu_hotplug.compat_migration.non_compat_migration.default, virsh.migrate.there_unsafe_cache_writeback.without_cpu_hotplug.compat_migration.non_compat_migration.with_postcopy + no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.non_compat_migration.default + #- migrate_set_get_speed: + #no virsh.migrate_set_get_speed.verify_speed_with_migration.half.stress_tool.stress.memory + #no virsh.migrate_set_get_speed.verify_speed_with_migration.half.stress_tool.stress.vcpu + #no virsh.migrate_set_get_speed.verify_speed_with_migration.half.load_vms + #no virsh.migrate_set_get_speed.verify_speed_with_migration.half.multi_vms + #no virsh.migrate_set_get_speed.verify_speed_with_migration.two_times.stress_tool.stress.memory + #no virsh.migrate_set_get_speed.verify_speed_with_migration.two_times.stress_tool.stress.vcpu + #no virsh.migrate_set_get_speed.verify_speed_with_migration.two_times.load_vms + #no virsh.migrate_set_get_speed.verify_speed_with_migration.two_times.multi_vms + #no virsh.migrate_set_get_speed.verify_speed_with_migration.no_change.stress_tool.stress.memory + #no virsh.migrate_set_get_speed.verify_speed_with_migration.no_change.stress_tool.stress.vcpu + #no virsh.migrate_set_get_speed.verify_speed_with_migration.no_change.load_vms + #no virsh.migrate_set_get_speed.verify_speed_with_migration.no_change.multi_vms + #- migrate_options_mix + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_persistent.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.non_p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.p2p.postcopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_running.src_vm_transient.no_graphic_passwd.tunnelled.precopy.live + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.non_p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.graphic_passwd.p2p.precopy.offline + #no virsh.migrate_option_mix.persistent.persistent_xml.xml.dname.no_undefinesource.src_vm_shutoff.src_vm_persistent.no_graphic_passwd.non_p2p.precopy.offline + #- migrate_compat_p8_p9: + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_and_back_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live.normal_test.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.with_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_only.without_mem_hotplug.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_and_HP.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_strict_interleave.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_interleave_preferred.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.strict_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.interleave_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.with_postcopy + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.without_HP.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_only.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_one_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotplug.hotplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_before_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_before_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_after_unplug_after_migration.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.with_cpu_hotplug.with_hotunplug.hotplug_unplug_before_hotplug_unplug_after.compat_migration.ppc_compat_migration_p9.from_power9.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power8.default + #no virsh.migrate.there_live_with_numa.with_numa_pinning.memnode_with_preferred_strict.preferred_memory_mode.with_HP_pin.HP_pin_with_both_numa_node.without_cpu_hotplug.compat_migration.ppc_compat_migration_p9.from_power9.default + ` + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/network_p1.cfg b/config/tests/guest/libvirt/network_p1.cfg new file mode 100644 index 00000000..461db22d --- /dev/null +++ b/config/tests/guest/libvirt/network_p1.cfg @@ -0,0 +1,134 @@ +include tests-shared.cfg + +# Basic VM credentials and identification +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 + +#Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' + +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no + +# Binaries path +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages + +# CPU and Memory +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +mem = 32768 + +# Test Variants +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_network: + variants: + - guest_network: + only nwfilter_edit_uuid, nwfilter_update_lock, nwfilter_update_vm_running.update_arp_rule, nwfilter_vm_attach.possitive_test.allow_arp, nwfilter_vm_start.daemon_restart, virsh.net_autostart.normal_test.set_autostart.netname, virsh.net_autostart.normal_test.set_autostart.netuuid, virsh.net_create.normal_test.file_as_argument.default_config, virsh.net_create.normal_test.file_as_argument.default_config_uuid, virsh.net_create.normal_test.file_as_argument.new_network, virsh.net_destroy.check_libvirtd.net_active.create_vm.persistent, virsh.net_destroy.check_libvirtd.net_active.start_vm.persistent, virsh.net_destroy.check_vm.transient, virsh.net_dhcp_leases.positive_test.lease.hours.host, virsh.net_dhcp_leases.positive_test.lease.minutes.host, virsh.net_dhcp_leases.positive_test.lease.seconds.host, virsh.net_dhcp_leases.positive_test.lease.seconds.range, virsh.net_dhcp_leases.positive_test.lease.infinite.host, virsh.net_dhcp_leases.positive_test.lease.infinite.range, virsh.net_dumpxml.normal_test.non_acl.name_option, virsh.net_dumpxml.normal_test.non_acl.uuid_option, virsh.net_dumpxml.normal_test.non_acl.inactive_option, virsh.net_edit.net_define.modify.changeable, virsh.net_edit.net_define.delete.changeable, virsh.net_info.normal_test.name_option, virsh.net_info.normal_test.uuid_option, virsh.net_list.no_opt, virsh.net_list.normal_test.non_acl.inactive_opt, virsh.net_list.normal_test.non_acl.all_opt.default, virsh.net_list.normal_test.non_acl.all_opt.inactive, virsh.net_list.normal_test.non_acl.persistent_opt, virsh.net_list.normal_test.non_acl.transient_opt, virsh.net_list.normal_test.non_acl.autostart_opt, virsh.net_list.normal_test.non_acl.noautostart_opt, virsh.net_list.normal_test.non_acl.uuid_opt, virsh.net_list.normal_test.non_acl.name_opt, virsh.net_list.normal_test.non_acl.table_opt, virsh.net_event.positive_test.no_timeout.no_loop.list_all_events, virsh.net_event.positive_test.no_timeout.no_loop.lifecycle_event.default, virsh.net_event.positive_test.no_timeout.no_loop.lifecycle_event.timestamp, virsh.net_event.positive_test.no_timeout.loop.list_all_events, virsh.net_event.positive_test.no_timeout.loop.lifecycle_event.default, virsh.net_event.positive_test.no_timeout.loop.lifecycle_event.timestamp, virsh.net_event.positive_test.timeout.no_loop.list_all_events, virsh.net_event.positive_test.timeout.no_loop.lifecycle_event.default, virsh.net_event.positive_test.timeout.no_loop.lifecycle_event.timestamp, virsh.net_event.positive_test.timeout.loop.list_all_events, virsh.net_event.positive_test.timeout.loop.lifecycle_event.default, virsh.net_event.positive_test.timeout.loop.lifecycle_event.timestamp, virsh.net_name.uuid_option, virsh.net_uuid.name_option, virsh.nwfilter_define.update_exist_filter.non_acl.same_uuid, virsh.nwfilter_define.positive_test.mac_test.non_acl, virsh.nwfilter_define.positive_test.vlan_test.non_acl, virsh.nwfilter_define.positive_test.stp_test.non_acl, virsh.nwfilter_define.positive_test.arp_test.non_acl, virsh.nwfilter_define.positive_test.rarp_test.non_acl, virsh.nwfilter_define.positive_test.ip_test.non_acl, virsh.nwfilter_define.positive_test.ipv6_test.non_acl, virsh.nwfilter_define.positive_test.tcp_test.non_acl, virsh.nwfilter_define.positive_test.udp_test.non_acl, virsh.nwfilter_define.positive_test.sctp_test.non_acl, virsh.nwfilter_define.positive_test.tcp_ipv6_test.non_acl, virsh.nwfilter_define.positive_test.udp_ipv6_test.non_acl, virsh.nwfilter_define.positive_test.sctp_ipv6_test.non_acl, virsh.nwfilter_define.positive_test.icmp_test.non_acl, virsh.nwfilter_define.positive_test.icmpv6_test.non_acl, virsh.nwfilter_define.positive_test.igmp_test.non_acl, virsh.nwfilter_define.positive_test.esp_test.non_acl, virsh.nwfilter_define.positive_test.ah_test.non_acl, virsh.nwfilter_define.positive_test.udplite_test.non_acl, virsh.nwfilter_define.positive_test.all_test.non_acl, virsh.nwfilter_define.positive_test.ah_ipv6_test.non_acl, virsh.nwfilter_define.positive_test.all_ipv6_test.non_acl, virsh.nwfilter_define.positive_test.esp_ipv6_test.non_acl, virsh.nwfilter_define.positive_test.udplite_ipv6_test.non_acl, virsh.nwfilter_dumpxml.normal_test.non_acl, virsh.nwfilter_list.normal_test.non_acl, virsh.nwfilter_undefine.normal_test.non_acl, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.rom_enable_no, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.rom_enable_yes, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.large_scale, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.test_libvirtd, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.special_mac.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.special_mac.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.default.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.default.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.persistent.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.persistent.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.current.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.current.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.config.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.config.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.stress_test, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_pci, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_mac_pci, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_mac, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.large_scale, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.test_libvirtd, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.special_mac.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.special_mac.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.default.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.default.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.persistent.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.persistent.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.current.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.current.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.config.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.config.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.stress_test, virsh.nwfilter_edit.positive_test.use_name, virsh.nwfilter_edit.positive_test.use_uuid, virsh.net_start.normal_test.non_acl.valid_netname, virsh.net_start.normal_test.non_acl.valid_netuuid, virsh.net_start.normal_test.restart_firewalld.valid_netname, virsh.domiflist.with_valid_option.domid, virsh.domiflist.with_valid_option.uuid, virsh.domiflist.with_valid_option.name, virsh.domiflist.with_valid_option.inactive_option, virsh.domiflist.with_valid_option.iface_model.virtio_iface, virsh.domiflist.with_valid_option.iface_model.e1000_iface, virsh.domiflist.with_valid_option.iface_model.rtl8139_iface, virsh.domiflist.with_valid_option.iface_options.print_xml, virtual_network.iface_ovs.net_ovs.default_test, virtual_network.iface_ovs.net_ovs.ovs_portgroup.portgroup_42, virtual_network.iface_ovs.net_ovs.ovs_portgroup.portgroup_4, virtual_network.iface_ovs.net_ovs.ovs_iface, virtual_network.iface_ovs.net_ovs.ovs_qos.start, virtual_network.iface_ovs.net_ovs.ovs_qos.hotplug_iface, virtual_network.iface_ovs.net_ovs.ovs_qos.domiftune_add, virtual_network.iface_ovs.attach.attach_device.detach_device, virtual_network.iface_ovs.attach.attach_device.detach_interface, virsh.iface.no_acl.iface_no_attach.no_exist_iface.no_protocol.bond_type.no_eth.net_no_restart, virtual_network.iface_network.bridge_test, virtual_network.iface_network.dnsmasq_test.net_dns_forward, virtual_network.iface_network.dnsmasq_test.net_domain, virtual_network.iface_network.dnsmasq_test.net_host_ip, virtual_network.iface_network.dnsmasq_test.net_netmask, virtual_network.iface_network.dnsmasq_test.net_forwarder_full, virtual_network.iface_network.dnsmasq_test.net_forwarder_domain, virtual_network.iface_network.dnsmasq_test.net_forwarder_mix, virtual_network.iface_network.dnsmasq_test.disable_dns, virtual_network.iface_network.qos_test.qos_option_bandwidth.positive_test, virtual_network.iface_network.qos_test.qos_option_bandwidth.by_update_device, virtual_network.iface_network.qos_test.qos_option_bandwidth.qdisc_multiqueue, virtual_network.iface_network.net_forward.net_nat.with_2net, virtual_network.iface_options.iface_driver.driver_page_per_vq.attach_device, virtual_network.iface_options.iface_driver.driver_queues_positive.attach_iface, virtual_network.iface_options.iface_driver.driver_queues_negative, virtual_network.iface_options.iface_driver.driver_vhost.error_test, virtual_network.iface_options.iface_offloads.attach_iface, virtual_network.iface_options.iface_offloads.update_iface, virtual_network.iface_options.iface_offloads.disable_udp, virtual_network.iface_options.iface_offloads.disable_tcp, virtual_network.iface_options.iface_target_prefix.vnet.network, virtual_network.iface_options.iface_target_prefix.macvtap.network, virtual_network.iface_options.iface_target_prefix.macvlan.network, virtual_network.iface_options.iface_target_prefix.test.network, virtual_network.iface_options.iface_target_prefix.duplicate.network, virsh.attach_detach_interface.normal_test.vm_running.default_network.default.domname, virsh.attach_detach_interface.normal_test.vm_running.default_network.default.domid, virsh.attach_detach_interface.normal_test.vm_running.default_network.default.domuuid, virsh.attach_detach_interface.normal_test.vm_running.default_network.at_option_config.domname, virsh.attach_detach_interface.normal_test.vm_running.default_network.at_option_current.domname, virsh.attach_detach_interface.normal_test.vm_running.default_network.multiqueue.domname, virsh.attach_detach_interface.normal_test.vm_running.default_network.with_coalesce.domname, virsh.attach_detach_interface.normal_test.vm_running.exist_bridge.multi_options.default.domname, virsh.attach_detach_interface.normal_test.vm_running.exist_bridge.multi_options.print_xml.domname, virsh.attach_detach_interface.normal_test.vm_running.exist_bridge.multi_options.attach_xml.domname, virsh.attach_detach_interface.normal_test.vm_running.direct.print_xml.domname, virsh.attach_detach_interface.normal_test.vm_running.direct.print_xml.domid, virsh.attach_detach_interface.normal_test.vm_running.direct.print_xml.domuuid, virsh.attach_detach_interface.normal_test.vm_paused.default_network.default.domname, virsh.attach_detach_interface.normal_test.vm_paused.default_network.default.domid, virsh.attach_detach_interface.normal_test.vm_paused.default_network.default.domuuid, virsh.attach_detach_interface.normal_test.vm_paused.direct.print_xml.domname, virsh.attach_detach_interface.normal_test.vm_paused.direct.print_xml.domid, virsh.attach_detach_interface.normal_test.vm_paused.direct.print_xml.domuuid, virsh.domifstat.normal_test.id_option, virsh.domifstat.normal_test.name_option, virsh.domifstat.normal_test.paused_option, virsh.domifstat.normal_test.uuid_option, virsh.dumpxml.normal_test.non_acl.vm_shutoff.with_default.domname, virsh.dumpxml.normal_test.non_acl.vm_shutoff.with_default.domuuid, virsh.dumpxml.normal_test.non_acl.vm_shutoff.with_inactive.domname, virsh.dumpxml.normal_test.non_acl.vm_shutoff.with_inactive.domuuid, virsh.dumpxml.normal_test.non_acl.vm_running.with_default.domid, virsh.dumpxml.normal_test.non_acl.vm_running.with_default.domname, virsh.dumpxml.normal_test.non_acl.vm_running.with_default.domuuid, virsh.dumpxml.normal_test.non_acl.vm_running.with_inactive.domid, virsh.dumpxml.normal_test.non_acl.vm_running.with_inactive.domname, virsh.dumpxml.normal_test.non_acl.vm_running.with_inactive.domuuid, virsh.dumpxml.normal_test.non_acl.vm_paused.with_default.domid, virsh.dumpxml.normal_test.non_acl.vm_paused.with_default.domname, virsh.dumpxml.normal_test.non_acl.vm_paused.with_default.domuuid, virsh.dumpxml.normal_test.non_acl.vm_paused.with_inactive.domid, virsh.dumpxml.normal_test.non_acl.vm_paused.with_inactive.domname, virsh.dumpxml.normal_test.non_acl.vm_paused.with_inactive.domuuid, virsh.domiftune.positive_testing.get_domif_parameter.running_guest.options.none, virsh.domiftune.positive_testing.get_domif_parameter.running_guest.options.live, virsh.domiftune.positive_testing.get_domif_parameter.running_guest.options.current, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.live.minimum_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.live.inside_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.current.minimum_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.current.inside_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.none.minimum_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.none.inside_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.live.inside_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.current.inside_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.none.inside_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.clear_inbound, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.clear_outbound, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.mac_address.config, virsh.domiftune.positive_testing.set_domif_parameter.shutoff_guest + + # P1 Test cases to be fixed from above + # nwfilter_vm_start.possitive_test.new_filter.variable_notation + # nwfilter_vm_start.possitive_test.new_filter.ip_learning.default + # virsh.net_dhcp_leases.positive_test.attach_interface_before_vm_start + # virsh.net_dhcp_leases.positive_test.attach_interface_after_vm_start + # virsh.net_dhcp_leases.positive_test.lease.hours.range + # virsh.net_dhcp_leases.positive_test.lease.minutes.range + # virsh.domif_setlink_getlink.positive_test.virtio.interface_net.no_config.domain_name.running_guest.no domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_net.no_config.domain_name.running_guest.domif_setlink.setlink_down + # virsh.domif_setlink_getlink.positive_test.virtio.interface_net.no_config.domain_ID.running_guest.domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_name.running_guest.domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_name.running_guest.domif_setlink.setlink_down + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_name.shutoff_guest.domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_name.shutoff_guest.domif_setlink.setlink_down + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_UUID.shutoff_guest.domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.with_config.domain_name.running_guest.domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.with_config.domain_name.running_guest.domif_setlink.setlink_down + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.with_persistent.domain_name.running_guest.domif_setlink.setlink_up + # virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.with_persistent.domain_name.running_guest.domif_setlink.setlink_down + # virtual_network.iface_network.dnsmasq_test.net_dhcp_range + # virtual_network.iface_network.dnsmasq_test.net_dns_host + # virtual_network.iface_network.net_forward.net_nat.default + # virtual_network.iface_network.net_forward.net_open.default + # virtual_network.iface_network.net_forward.route_test + # virtual_network.iface_network.vm_clone_test + # virtual_network.iface_options.iface_source_default + # virtual_network.iface_options.iface_driver.driver_txmode_iothread + # virtual_network.iface_options.iface_driver.driver_txmode_timer + # virtual_network.iface_options.iface_driver.driver_page_per_vq.on + # virtual_network.iface_options.iface_driver.driver_queues_positive.modify_iface + # virtual_network.iface_options.iface_driver.driver_vhost.with_vhost_net + # virtual_network.iface_options.iface_driver.driver_vhost.without_vhost_net + # virtual_network.iface_options.iface_driver.driver_tx_queue_size.start_success.left_boundary_value + # virtual_network.iface_options.iface_driver.driver_tx_queue_size.start_success.right_boundary_value + # virtual_network.iface_options.iface_driver.driver_rx_queue_size.start_success.left_boundary_value + # virtual_network.iface_options.iface_driver.driver_rx_queue_size.start_success.right_boundary_value + # virtual_network.iface_options.iface_driver.driver_rx_queue_size.start_success.middle_value + # virtual_network.iface_options.iface_driver.driver_vhost_rx_tx + # virtual_network.iface_options.iface_driver.driver_packed_on + # virtual_network.iface_options.iface_type.type_vhostuser.queue_size_check + # virtual_network.iface_options.iface_type.type_vhostuser.multi_queue.hotplug + # virtual_network.iface_options.iface_type.type_vhostuser.multi_queue.passthrough + # virtual_network.iface_options.iface_type.type_vhostuser.get_domstats + # virtual_network.iface_options.iface_type.type_vhostuser.multi_guests.statistics_check + # virtual_network.iface_options.iface_type.type_vhostuser.multi_guests.interface_check.with_share_mem + # virtual_network.iface_options.iface_type.type_vhostuser.multi_guests.interface_check.without_share_mem + # virtual_network.iface_options.iface_type.type_vhostuser.check_performance + # virtual_network.iface_options.iface_macvtap.default.driver_vhost.mode_bridge + # virtual_network.iface_options.iface_macvtap.default.driver_vhost.mode_private + # virtual_network.iface_options.iface_macvtap.default.driver_vhost.mode_passthrough + # virtual_network.iface_options.iface_macvtap.default.driver_qemu.mode_bridge + # virtual_network.iface_options.iface_macvtap.default.driver_qemu.mode_private + # virtual_network.iface_options.iface_macvtap.default.driver_qemu.mode_passthrough + # virtual_network.iface_options.iface_macvtap.multiqueue.driver_vhost.mode_bridge + # virtual_network.iface_options.iface_macvtap.multiqueue.driver_vhost.mode_private + # virtual_network.iface_options.iface_macvtap.multiqueue.driver_vhost.mode_passthrough + # virtual_network.iface_options.iface_backend.default_test + # virtual_network.iface_options.iface_backend.specific_backend + # virtual_network.iface_options.iface_target_prefix.vnet.direct + # virtual_network.iface_options.iface_target_prefix.macvtap.direct + # virtual_network.iface_options.iface_target_prefix.macvlan.direct + # virtual_network.iface_options.iface_target_prefix.test.direct + # virtual_network.iface_options.iface_target_prefix.duplicate.direct + # virsh.attach_detach_interface.normal_test.vm_running.direct.at_detach_device.domname + # virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.live.maximum_boundary + # virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.current.maximum_boundary + # virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.none.maximum_boundary + # virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.current.maximum_boundary + # virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.none.minimum_boundary + # virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.none.maximum_boundary + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/network_p2.cfg b/config/tests/guest/libvirt/network_p2.cfg new file mode 100644 index 00000000..1c11075f --- /dev/null +++ b/config/tests/guest/libvirt/network_p2.cfg @@ -0,0 +1,63 @@ +include tests-shared.cfg + +# Basic VM credentials and identification +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 + +#Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' + +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no + +# Binaries path +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages + +# CPU and Memory +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +mem = 32768 + +# Test Variants +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_network: + variants: + - guest_network: + only nwfilter_vm_start.possitive_test.new_filter.ip_learning.kill_libvirtd, nwfilter_vm_start.possitive_test.new_filter.chain_priority_greater_than_rule, nwfilter_vm_start.possitive_test.new_filter.dhcpserver_variable, nwfilter_vm_start.possitive_test.new_filter.disallow_ipv6, nwfilter_vm_start.possitive_test.new_filter.disallow_dhcp, nwfilter_vm_start.possitive_test.new_filter.disallow_arp, nwfilter_vm_start.possitive_test.new_filter.clean_traffic, nwfilter_vm_start.possitive_test.default_filter.no_mac_spoofing, nwfilter_vm_start.possitive_test.default_filter.no_mac_broadcast, nwfilter_vm_start.possitive_test.default_filter.no_ip_spoofing, nwfilter_vm_start.possitive_test.default_filter.no_arp_spoofing, nwfilter_vm_start.possitive_test.default_filter.allow_dhcp, nwfilter_vm_start.possitive_test.default_filter.allow_ipv4, nwfilter_vm_start.possitive_test.default_filter.allow_incoming_ipv4, nwfilter_vm_start.possitive_test.default_filter.allow_arp, nwfilter_vm_start.possitive_test.default_filter.clean_traffic_gateway, nwfilter_vm_start.possitive_test.default_filter.clean_traffic_with_params, nwfilter_vm_start.possitive_test.default_filter.clean_traffic_without_params, virsh.net_autostart.normal_test.autostart_no_reboot.netname, virsh.net_autostart.normal_test.autostart_no_reboot.netuuid, virsh.net_autostart.normal_test.set_disable.netname, virsh.net_autostart.normal_test.set_disable.netuuid, virsh.net_create.normal_test.file_as_option.default_config, virsh.net_create.normal_test.file_as_option.default_config_uuid, virsh.net_create.normal_test.file_as_option.new_network, virsh.net_dhcp_leases.positive_test.lease.default.host, virsh.net_dhcp_leases.positive_test.lease.default.range, virsh.net_edit.net_define.modify.unchangeable, virsh.net_edit.net_define.modify.readonly_test, virsh.net_edit.net_define.delete.unchangeable, virsh.net_edit.net_create.modify.changeable, virsh.net_edit.net_create.modify.unchangeable, virsh.net_edit.net_create.delete.changeable, virsh.net_edit.net_create.delete.unchangeable, virsh.net_list.normal_test.non_acl.combined.all_persistent, virsh.net_list.normal_test.non_acl.combined.all_noautostart, virsh.net_list.normal_test.non_acl.combined.persistent_inactive, virsh.net_list.normal_test.non_acl.combined.persistent_transient, virsh.net_list.normal_test.non_acl.combined.autostart_inactive, virsh.net_list.normal_test.non_acl.combined.noautostart_opt, virsh.nwfilter_define.update_exist_filter.non_acl.new_uuid, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.rom_bar_off, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.rom_enable_no_bar_off.hot, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.rom_enable_no_bar_off.cold, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.duplicate_target, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.duplicate_mac, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_config.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_config.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.current_cofig.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.current_cofig.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_persistent.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_persistent.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_current.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_current.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.current_persistent.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.current_persistent.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.config_persistent.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.config_persistent.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_config_persistent.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.live_config_persistent.inactive, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.options_test.check_mac.active, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_alias_dup_mac, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_dup_mac, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.duplicate_target, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.duplicate_mac, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_config.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_config.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.current_cofig.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.current_cofig.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_persistent.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_persistent.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_current.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_current.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.current_persistent.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.current_persistent.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.config_persistent.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.config_persistent.inactive, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_config_persistent.active, virtual_network.iface_hotplug.at_iface.iface_attach.model_virtio.options_test.live_config_persistent.inactive, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_config.dt_option_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_config.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_current.dt_option_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_current.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_config.dt_option_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_current.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_current.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_current.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_default.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_default.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_default.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live_config.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live_config.dt_option_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live_config.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live_config.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live_config.dt_option_live_config.at_okay_dt_okay, virsh.net_start.normal_test.stop_start_firewalld.valid_netname, virsh.net_start.route_test, virsh.domif_setlink_getlink.positive_test.virtio.interface_net.no_config.domain_name.running_guest.domif_setlink.stable_test.setlink_up.restart_libvirtd, virsh.domif_setlink_getlink.positive_test.virtio.interface_net.no_config.domain_name.running_guest.domif_setlink.stable_test.setlink_down.restart_libvirtd, virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_name.running_guest.domif_setlink.stable_test.setlink_up.save_restore, virsh.domif_setlink_getlink.positive_test.virtio.interface_mac.no_config.domain_name.running_guest.domif_setlink.stable_test.setlink_down.save_restore, virsh.domif_setlink_getlink.multi_functional_test.virtio.check_update_device, virsh.domif_setlink_getlink.multi_functional_test.virtio.check_options_config, virtual_network.iface_network.dnsmasq_test.disable_dhcp, virtual_network.iface_network.dnsmasq_test.disable_dns_dhcp, virtual_network.iface_network.net_guest, virtual_network.iface_network.net_macvtap.net_bridge.exist_macvtap, virtual_network.iface_options.iface_macvtap.default.driver_vhost.mode_vepa, virtual_network.iface_options.iface_macvtap.default.driver_qemu.mode_vepa, virtual_network.iface_options.iface_macvtap.multiqueue.driver_vhost.mode_vepa, virsh.attach_detach_interface.normal_test.vm_running.direct.default.domname, virsh.attach_detach_interface.normal_test.vm_running.direct.default.domid, virsh.attach_detach_interface.normal_test.vm_running.direct.default.domuuid + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/network_p3.cfg b/config/tests/guest/libvirt/network_p3.cfg new file mode 100644 index 00000000..abbf038d --- /dev/null +++ b/config/tests/guest/libvirt/network_p3.cfg @@ -0,0 +1,63 @@ +include tests-shared.cfg + +# Basic VM credentials and identification +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 + +#Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' + +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no + +# Binaries path +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages + +# CPU and Memory +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +mem = 32768 + +# Test Variants +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_network: + variants: + - guest_network: + only nwfilter_vm_attach.negative_test.attach_none, nwfilter_vm_attach.negative_test.attach_invalid_twice, nwfilter_vm_start.possitive_test.new_filter.allow_ipv6, nwfilter_vm_start.possitive_test.new_filter.noexec_tmp_dir, nwfilter_vm_start.possitive_test.new_filter.ipset_test, nwfilter_vm_start.possitive_test.default_filter.no_other_l2_traffic, nwfilter_vm_start.negative_test.ip_learning_err, nwfilter_vm_start.negative_test.dhcpserver_variable, virsh.iface_edit.positive_test.loopback_iface, virsh.iface_edit.negative_test, virsh.net_autostart.error_test.none_network, virsh.net_autostart.error_test.invalid_network, virsh.net_autostart.error_test.additional_arg, virsh.net_autostart.error_test.additional_option, virsh.net_autostart.error_test.transient_network, virsh.net_autostart.error_test.readonly_mode, virsh.net_create.error_test.readwrite.bad_command_line.additional_file.no_extra_options.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.additional_file.no_extra_options.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.additional_file.non_existant_extra_option.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.additional_file.non_existant_extra_option.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.additional_file.non_existant_extra_argument.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.additional_file.non_existant_extra_argument.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_file.no_extra_options.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_file.no_extra_options.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_file.non_existant_extra_option.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_file.non_existant_extra_option.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_file.non_existant_extra_argument.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_file.non_existant_extra_argument.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_exist_file.no_extra_options.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_exist_file.no_extra_options.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_exist_file.non_existant_extra_option.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_exist_file.non_existant_extra_option.existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_exist_file.non_existant_extra_argument.no_existing_removal, virsh.net_create.error_test.readwrite.bad_command_line.no_exist_file.non_existant_extra_argument.existing_removal, virsh.net_create.error_test.readwrite.bad_contents.invalid_name.no_existing_removal, virsh.net_create.error_test.readwrite.bad_contents.invalid_name.existing_removal, virsh.net_create.error_test.readwrite.bad_contents.invalid_uuid.no_existing_removal, virsh.net_create.error_test.readwrite.bad_contents.invalid_uuid.existing_removal, virsh.net_create.error_test.readwrite.bad_contents.bad_xml.no_existing_removal, virsh.net_create.error_test.readwrite.bad_contents.bad_xml.existing_removal, virsh.net_create.error_test.readonly, virsh.net_create.error_test.invalid_name_with_slash, virsh.net_destroy.normal_test.non_acl.default_option.persistent, virsh.net_destroy.normal_test.non_acl.default_option.transient, virsh.net_destroy.normal_test.non_acl.uuid_option.persistent, virsh.net_destroy.normal_test.non_acl.uuid_option.transient, virsh.net_destroy.normal_test.acl_test.default_option.persistent, virsh.net_destroy.normal_test.acl_test.default_option.transient, virsh.net_destroy.normal_test.acl_test.uuid_option.persistent, virsh.net_destroy.normal_test.acl_test.uuid_option.transient, virsh.net_destroy.check_libvirtd.net_inactive.create_vm.persistent, virsh.net_destroy.check_libvirtd.net_inactive.start_vm.persistent, virsh.net_destroy.error_test.no_option.persistent, virsh.net_destroy.error_test.no_option.transient, virsh.net_destroy.error_test.no_net_extra_option.persistent, virsh.net_destroy.error_test.no_net_extra_option.transient, virsh.net_destroy.error_test.extra_option1.persistent, virsh.net_destroy.error_test.extra_option1.transient, virsh.net_destroy.error_test.extra_option2.persistent, virsh.net_destroy.error_test.extra_option2.transient, virsh.net_destroy.error_test.inactive_status_option.persistent, virsh.net_destroy.error_test.inactive_status_option.transient, virsh.net_destroy.error_test.acl_test.persistent, virsh.net_destroy.error_test.acl_test.transient, virsh.net_destroy.error_test.net_destroy_name_readonly.persistent, virsh.net_destroy.error_test.net_destroy_name_readonly.transient, virsh.net_destroy.error_test.net_destroy_uuid_readonly.persistent, virsh.net_destroy.error_test.net_destroy_uuid_readonly.transient, virsh.net_dhcp_leases.negative_test.invalid_option, virsh.net_dhcp_leases.negative_test.invalid_net, virsh.net_dhcp_leases.negative_test.invalid_mac, virsh.net_dhcp_leases.negative_test.empty_mac, virsh.net_dhcp_leases.negative_test.blank_mac, virsh.net_dhcp_leases.negative_test.invalid_lease, virsh.net_dhcp_leases.negative_test.blank_lease, virsh.net_dumpxml.normal_test.acl_test.name_option, virsh.net_dumpxml.normal_test.acl_test.uuid_option, virsh.net_dumpxml.normal_test.acl_test.inactive_option, virsh.net_dumpxml.error_test.space_option, virsh.net_dumpxml.error_test.no_option, virsh.net_dumpxml.error_test.no_exist_option, virsh.net_dumpxml.error_test.extra_option, virsh.net_dumpxml.error_test.extra_args_option, virsh.net_info.error_test.space_option, virsh.net_info.error_test.no_option, virsh.net_info.error_test.invalid_name_option, virsh.net_info.error_test.invalid_uuid_option, virsh.net_info.error_test.additional_option, virsh.net_list.normal_test.acl_test.inactive_opt, virsh.net_list.normal_test.acl_test.all_opt.default, virsh.net_list.normal_test.acl_test.all_opt.inactive, virsh.net_list.normal_test.acl_test.persistent_opt, virsh.net_list.normal_test.acl_test.transient_opt, virsh.net_list.normal_test.acl_test.autostart_opt, virsh.net_list.normal_test.acl_test.noautostart_opt, virsh.net_list.normal_test.acl_test.uuid_opt, virsh.net_list.normal_test.acl_test.name_opt, virsh.net_list.normal_test.acl_test.table_opt, virsh.net_list.normal_test.acl_test.combined.all_persistent, virsh.net_list.normal_test.acl_test.combined.all_noautostart, virsh.net_list.normal_test.acl_test.combined.persistent_inactive, virsh.net_list.normal_test.acl_test.combined.persistent_transient, virsh.net_list.normal_test.acl_test.combined.autostart_inactive, virsh.net_list.normal_test.acl_test.combined.noautostart_opt, virsh.net_list.error_test.inactive_opt, virsh.net_list.error_test.persistent_opt, virsh.net_list.error_test.transient_opt, virsh.net_list.error_test.autostart_opt, virsh.net_list.error_test.noautostart_opt, virsh.net_list.error_test.name_opt, virsh.net_list.error_test.combined.uuid_name, virsh.net_list.error_test.combined.uuid_table, virsh.net_list.error_test.combined.name_table, virsh.net_list.error_test.combined.name_table_uuid, virsh.net_list.error_test.extra_args_opt, virsh.net_list.error_test.extra_opt, virsh.net_event.negative_test.invalid_event, virsh.net_event.negative_test.invalid_timeout, virsh.net_name.error_test.space_option, virsh.net_name.error_test.no_option, virsh.net_name.error_test.no_exist_option, virsh.net_name.error_test.extra_option, virsh.net_name.error_test.extra_args_option, virsh.net_name.error_test.name_option, virsh.net_uuid.error_test.space_option, virsh.net_uuid.error_test.no_option, virsh.net_uuid.error_test.no_exist_option, virsh.net_uuid.error_test.extra_option, virsh.net_uuid.error_test.extra_args_option, virsh.nwfilter_define.update_exist_filter.acl_test, virsh.nwfilter_define.negative_test.acl_test, virsh.nwfilter_define.negative_test.invalid_extra_option, virsh.nwfilter_define.negative_test.no_xml_file, virsh.nwfilter_define.negative_test.invalid_xml_file, virsh.nwfilter_define.negative_test.invalid_rule_action, virsh.nwfilter_define.negative_test.boundary_test.mac_test, virsh.nwfilter_define.negative_test.boundary_test.arp_test, virsh.nwfilter_define.negative_test.boundary_test.rarp_test, virsh.nwfilter_define.negative_test.boundary_test.ip_test, virsh.nwfilter_define.negative_test.boundary_test.ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.tcp_test, virsh.nwfilter_define.negative_test.boundary_test.udp_test, virsh.nwfilter_define.negative_test.boundary_test.sctp_test, virsh.nwfilter_define.negative_test.boundary_test.tcp_ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.udp_ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.sctp_ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.icmp_test, virsh.nwfilter_define.negative_test.boundary_test.icmpv6_test, virsh.nwfilter_define.negative_test.boundary_test.ah_ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.all_ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.esp_ipv6_test, virsh.nwfilter_define.negative_test.boundary_test.udplite_ipv6_test, virsh.nwfilter_define.positive_test.mac_test.acl_test, virsh.nwfilter_define.positive_test.vlan_test.acl_test, virsh.nwfilter_define.positive_test.stp_test.acl_test, virsh.nwfilter_define.positive_test.arp_test.acl_test, virsh.nwfilter_define.positive_test.rarp_test.acl_test, virsh.nwfilter_define.positive_test.ip_test.acl_test, virsh.nwfilter_define.positive_test.ipv6_test.acl_test, virsh.nwfilter_define.positive_test.tcp_test.acl_test, virsh.nwfilter_define.positive_test.udp_test.acl_test, virsh.nwfilter_define.positive_test.sctp_test.acl_test, virsh.nwfilter_define.positive_test.tcp_ipv6_test.acl_test, virsh.nwfilter_define.positive_test.udp_ipv6_test.acl_test, virsh.nwfilter_define.positive_test.sctp_ipv6_test.acl_test, virsh.nwfilter_define.positive_test.icmp_test.acl_test, virsh.nwfilter_define.positive_test.icmpv6_test.acl_test, virsh.nwfilter_define.positive_test.igmp_test.acl_test, virsh.nwfilter_define.positive_test.esp_test.acl_test, virsh.nwfilter_define.positive_test.ah_test.acl_test, virsh.nwfilter_define.positive_test.udplite_test.acl_test, virsh.nwfilter_define.positive_test.all_test.acl_test, virsh.nwfilter_define.positive_test.ah_ipv6_test.acl_test, virsh.nwfilter_define.positive_test.all_ipv6_test.acl_test, virsh.nwfilter_define.positive_test.esp_ipv6_test.acl_test, virsh.nwfilter_define.positive_test.udplite_ipv6_test.acl_test, virsh.nwfilter_dumpxml.normal_test.acl_test, virsh.nwfilter_dumpxml.error_test.invalid_option, virsh.nwfilter_dumpxml.error_test.none_option, virsh.nwfilter_list.normal_test.acl_test, virsh.nwfilter_list.error_test, virsh.nwfilter_undefine.normal_test.acl_test, virsh.nwfilter_undefine.error_test.invalid_option, virsh.nwfilter_undefine.error_test.none_option, virsh.nwfilter_undefine.error_test.acl_test, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_wrong_mac, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_wrong_pci, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_mac_wrong_alias, virtual_network.iface_hotplug.at_device.iface_attach.model_virtio.detach_match_test.by_alias_wrong_mac, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_config.dt_option_live.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_config.dt_option_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_config.dt_option_current.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_config.dt_option_default.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_config.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_current.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_current.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_current.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_current.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_current.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_default.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_default.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_default.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_default.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_default.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live_config.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live_config.dt_option_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live_config.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live_config.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_running.at_option_live_config.dt_option_live_config.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live.dt_option_live.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live.dt_option_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live.dt_option_current.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live.dt_option_default.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live.dt_option_live_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_config.dt_option_live.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_config.dt_option_default.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_config.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_current.dt_option_live.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_current.dt_option_default.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_current.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_default.dt_option_live.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_default.dt_option_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_default.dt_option_current.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_default.dt_option_default.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_default.dt_option_live_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_live.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_current.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_default.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_live_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_live.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_config.dt_option_live.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_config.dt_option_current.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_config.dt_option_default.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_config.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_current.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_current.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_default.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_paused.at_option_default.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_config.dt_option_live.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_config.dt_option_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_config.dt_option_current.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_config.dt_option_default.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_config.dt_option_live_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_current.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_current.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_current.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_current.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_current.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_default.dt_option_live.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_default.dt_option_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_default.dt_option_current.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_default.dt_option_default.at_okay_dt_okay, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_default.dt_option_live_config.at_okay_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live_config.dt_option_live.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live_config.dt_option_config.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live_config.dt_option_current.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live_config.dt_option_default.at_error_dt_error, virsh.attach_detach_interface_matrix.pre_vm_state_transient.at_option_live_config.dt_option_live_config.at_error_dt_error, virsh.nwfilter_edit.negative_test.invalid_name, virsh.nwfilter_edit.negative_test.invalid_extra_option, virsh.net_define_undefine.normal_test.new_network.non_acl, virsh.net_define_undefine.normal_test.new_network.multi_ip, virsh.net_define_undefine.normal_test.new_network.acl_test, virsh.net_define_undefine.normal_test.new_network.state_persistent_active, virsh.net_define_undefine.normal_test.new_network.state_transient_active, virsh.net_define_undefine.normal_test.new_network.state_persistent_inactive, virsh.net_define_undefine.normal_test.default_network.non_acl, virsh.net_define_undefine.normal_test.default_network.acl_test, virsh.net_define_undefine.normal_test.net_name_with_dot, virsh.net_define_undefine.normal_test.reliability, virsh.net_define_undefine.error_test.invalid_network.default.invalid_uuid, virsh.net_define_undefine.error_test.invalid_network.default.invalid_netname, virsh.net_define_undefine.error_test.invalid_network.default.invalid_name_with_slash, virsh.net_define_undefine.error_test.invalid_network.default.invalid_setting.reverse_range, virsh.net_define_undefine.error_test.invalid_network.default.invalid_setting.reverse_port, virsh.net_define_undefine.error_test.invalid_network.default.invalid_setting.not_within_range, virsh.net_define_undefine.error_test.invalid_network.default.multi_dhcp.v4, virsh.net_define_undefine.error_test.invalid_network.default.multi_dhcp.v6, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_dns.direct, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_dns.ovs_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_dns.host_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_mac.direct, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_mac.ovs_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_mac.host_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_domain.direct, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_domain.ovs_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_domain.host_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_Qos.direct, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_ip.direct, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_ip.ovs_bridge, virsh.net_define_undefine.error_test.invalid_network.others.unsupport_ip.host_bridge, virsh.net_define_undefine.error_test.invalid_network.others.invaid_forward.ovs_bridge, virsh.net_define_undefine.error_test.invalid_network.others.invaid_forward.host_bridge, virsh.net_define_undefine.error_test.invalid_network.others.invalid_bridge.direct, virsh.net_define_undefine.error_test.invalid_network.others.invalid_qos.direct, virsh.net_define_undefine.error_test.acl_test.define_acl, virsh.net_define_undefine.error_test.acl_test.undefine_acl, virsh.net_define_undefine.error_test.invalid_options.net_define.none_option, virsh.net_define_undefine.error_test.invalid_options.net_define.not_exist_option, virsh.net_define_undefine.error_test.invalid_options.net_define.additional_arg, virsh.net_define_undefine.error_test.invalid_options.net_define.additional_option, virsh.net_define_undefine.error_test.invalid_options.net_undefine.none_option, virsh.net_define_undefine.error_test.invalid_options.net_undefine.not_exist_option, virsh.net_define_undefine.error_test.invalid_options.net_undefine.additional_arg, virsh.net_define_undefine.error_test.invalid_options.net_undefine.additional_option, virsh.net_define_undefine.error_test.net_define_readonly, virsh.net_define_undefine.error_test.net_undefine_readonly, virsh.iface_trans.positive_testing.open_commit_transaction, virsh.iface_trans.positive_testing.open_rollback_transaction, virsh.iface_trans.negative_testing.no_pending_transaction, virsh.iface_trans.negative_testing.break_transaction.open_commit_transaction, virsh.iface_trans.negative_testing.break_transaction.open_rollback_transaction, virsh.iface_trans.negative_testing.exist_transaction, virsh.net_start.normal_test.acl_test.valid_netname, virsh.net_start.normal_test.acl_test.valid_netuuid, virsh.net_start.error_test.none, virsh.net_start.error_test.start_twice, virsh.net_start.error_test.invalid_netname, virsh.net_start.error_test.additional_args, virsh.net_start.error_test.additional_option, virsh.net_start.error_test.acl_test, virsh.net_start.error_test.net_start_readonly_test, virsh.domiflist.with_invalid_option.none, virsh.domiflist.with_invalid_option.invalid_domid, virsh.domiflist.with_invalid_option.invalid_uuid, virsh.domiflist.with_invalid_option.addition_invalid_param, virsh.domif_setlink_getlink.negative_test.running_guest_invalid_option, virsh.domif_setlink_getlink.negative_test.shutoff_guest_with_vnet, virsh.domif_setlink_getlink.negative_test.config_option_with_vnet, virsh.domif_setlink_getlink.negative_test.no_exist_device.with_config_option.no_exist_interface_net, virsh.domif_setlink_getlink.negative_test.no_exist_device.with_config_option.no_exist_interface_mac, virsh.domif_setlink_getlink.negative_test.no_exist_device.without_config_option.no_exist_interface_net, virsh.domif_setlink_getlink.negative_test.no_exist_device.without_config_option.no_exist_interface_mac, virsh.domif_setlink_getlink.negative_test.error_operation, virsh.domif_setlink_getlink.negative_test.no_operation, virsh.domif_setlink_getlink.negative_test.no_device, virsh.domif_setlink_getlink.negative_test.no_match_domain_uuid, virsh.domif_setlink_getlink.negative_test.no_match_domain_name, virsh.domif_setlink_getlink.negative_test.without_domain_param, virtual_network.iface_ovs.attach.attach_interface, libvirt_network_bandwidth.network, libvirt_network_bandwidth.interface, libvirt_network_bandwidth.portgroup, virsh.iface.acl_test.positive_test.grant_all.iface_no_attach.no_exist_iface.no_protocol.bond_type.no_eth.net_no_restart, virsh.iface_bridge.negative_test.iface_not_exists, virtual_network.iface_network.rom_test.negative.enable_no_bar_off, virtual_network.iface_network.rom_test.negative.enable_no_with_file, virtual_network.iface_network.qos_test.qos_option_bandwidth.negtive_start_test, virtual_network.iface_network.qos_test.qos_option_bandwidth.negtive_remove_test, virtual_network.iface_network.net_forward.net_isolated, virtual_network.iface_network.net_forward.net_nat.nat_ipv6, virtual_network.iface_network.net_forward.net_nat.reconnect_tap.default, virtual_network.iface_network.net_forward.net_nat.reconnect_tap.bridge_type, virtual_network.iface_network.net_forward.net_route, virtual_network.iface_network.net_forward.net_open.without_bridge, virtual_network.iface_network.net_forward.net_open.without_mac, virtual_network.iface_network.net_forward.net_open.negative_without_ip, virtual_network.iface_network.net_forward.net_open.negative_with_dev, virtual_network.iface_network.net_macvtap.error_test.start_error, virtual_network.iface_network.net_macvtap.error_test.define_error, virtual_network.iface_network.net_macvtap.error_test.duplicate_dev, virtual_network.iface_network.net_macvtap.error_test.direct_br_vlan, virtual_network.iface_options.iface_driver.driver_page_per_vq.off, virtual_network.iface_options.iface_driver.driver_tx_queue_size.start_success.middle_value, virtual_network.iface_options.iface_driver.driver_tx_queue_size.start_error.out_of_range_high, virtual_network.iface_options.iface_driver.driver_tx_queue_size.start_error.out_of_range_low, virtual_network.iface_options.iface_driver.driver_tx_queue_size.define_error.not_power_of_2, virtual_network.iface_options.iface_driver.driver_tx_queue_size.attach_error, virtual_network.iface_options.iface_driver.driver_rx_queue_size.start_error.out_of_range_high, virtual_network.iface_options.iface_driver.driver_rx_queue_size.start_error.out_of_range_low, virtual_network.iface_options.iface_driver.driver_rx_queue_size.define_error.not_power_of_2, virtual_network.iface_options.iface_driver.driver_rx_queue_size.attach_error, virtual_network.iface_options.iface_type.unsupport_setip_negative_network, virtual_network.iface_options.iface_type.unsupport_setip_negative_direct, virtual_network.iface_options.iface_backend.error_test, virsh.attach_detach_interface.normal_test.vm_paused.direct.default.domname, virsh.attach_detach_interface.normal_test.vm_paused.direct.default.domid, virsh.attach_detach_interface.normal_test.vm_paused.direct.default.domuuid, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_unknow.none, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_unknow.hex_domid, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_unknow.invalid_uuid, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_unknow.domname, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_none.none, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_none.hex_domid, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_none.invalid_uuid, virsh.attach_detach_interface.error_test.attach_iface.source_unkown.type_none.domname, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_unknow.none, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_unknow.hex_domid, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_unknow.invalid_uuid, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_unknow.domname, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_none.none, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_none.hex_domid, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_none.invalid_uuid, virsh.attach_detach_interface.error_test.attach_iface.source_none.type_none.domname, virsh.attach_detach_interface.error_test.detach_iface.type_unknow.none, virsh.attach_detach_interface.error_test.detach_iface.type_unknow.hex_domid, virsh.attach_detach_interface.error_test.detach_iface.type_unknow.invalid_uuid, virsh.attach_detach_interface.error_test.detach_iface.type_unknow.domname, virsh.attach_detach_interface.error_test.detach_iface.type_none.none, virsh.attach_detach_interface.error_test.detach_iface.type_none.hex_domid, virsh.attach_detach_interface.error_test.detach_iface.type_none.invalid_uuid, virsh.attach_detach_interface.error_test.detach_iface.type_none.domname, virsh.attach_detach_interface.error_test.detach_iface.type_none.readonly, virsh.attach_detach_interface.error_test.attach_with_script.type_eth.non_exist, virsh.attach_detach_interface.error_test.vm_shutoff, virsh.domifstat.error_test.no_option, virsh.domifstat.error_test.hex_id_option, virsh.domifstat.error_test.invalid_id_option, virsh.domifstat.error_test.invalid_name_option, virsh.domifstat.error_test.invalid_uuid_option, virsh.domifstat.error_test.extra_option, virsh.domifstat.error_test.shutoff_option, virsh.domifstat.error_test.no_interface_option, virsh.domifstat.error_test.error_interface_option, virsh.domifstat.error_test.with_libvirtd_stop, virsh.dumpxml.normal_test.non_acl.vm_shutoff.with_security.domname, virsh.dumpxml.normal_test.non_acl.vm_shutoff.with_security.domuuid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_shutoff.with_default.domname, virsh.dumpxml.normal_test.acl_test.grant_none.vm_shutoff.with_default.domuuid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_shutoff.with_inactive.domname, virsh.dumpxml.normal_test.acl_test.grant_none.vm_shutoff.with_inactive.domuuid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_running.with_default.domid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_running.with_default.domname, virsh.dumpxml.normal_test.acl_test.grant_none.vm_running.with_default.domuuid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_running.with_inactive.domid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_running.with_inactive.domname, virsh.dumpxml.normal_test.acl_test.grant_none.vm_running.with_inactive.domuuid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_paused.with_default.domid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_paused.with_default.domname, virsh.dumpxml.normal_test.acl_test.grant_none.vm_paused.with_default.domuuid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_paused.with_inactive.domid, virsh.dumpxml.normal_test.acl_test.grant_none.vm_paused.with_inactive.domname, virsh.dumpxml.normal_test.acl_test.grant_none.vm_paused.with_inactive.domuuid, virsh.dumpxml.normal_test.acl_test.grant_read_secure.vm_shutoff.with_security.domname, virsh.dumpxml.normal_test.acl_test.grant_read_secure.vm_shutoff.with_security.domuuid, virsh.dumpxml.error_test.none_domain, virsh.dumpxml.error_test.invalid_domid, virsh.dumpxml.error_test.hex_domid, virsh.dumpxml.error_test.invalid_domuuid, virsh.dumpxml.error_test.invalid_domname, virsh.dumpxml.error_test.additional_args, virsh.dumpxml.error_test.not_exist_options, virsh.dumpxml.error_test.acl_test.security_info, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_inbound.options.none.with_floor, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.live.minimum_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.live.maximum_boundary, virsh.domiftune.positive_testing.set_domif_parameter.running_guest.change_outbound.options.current.minimum_boundary, virsh.domiftune.negative_testing.get_domif_parameter.running_guest.options.invalid, virsh.domiftune.negative_testing.get_domif_parameter.running_guest.options.exclusive, virsh.domiftune.negative_testing.get_domif_parameter.shutoff_guest.options.invalid, virsh.domiftune.negative_testing.get_domif_parameter.shutoff_guest.options.live, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.live.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.live.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.config.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.config.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.current.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.current.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.none.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.none.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_inbound.options.none.floor_for_nobandwidth, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.live.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.live.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.config.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.config.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.current.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.current.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.none.invalid_format, virsh.domiftune.negative_testing.set_domif_parameter.running_guest.change_outbound.options.none.outside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.shutoff_guest.change_inbound.options.live.inside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.shutoff_guest.change_outbound.options.live.inside_boundary, virsh.domiftune.negative_testing.set_domif_parameter.shutoff_guest.invalid_format.inbound.config, virsh.domiftune.negative_testing.set_domif_parameter.shutoff_guest.invalid_format.inbound.current, virsh.domiftune.negative_testing.set_domif_parameter.shutoff_guest.invalid_format.outbound.config, virsh.domiftune.negative_testing.set_domif_parameter.shutoff_guest.invalid_format.outbound.current + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/pci_passthrough_p1.cfg b/config/tests/guest/libvirt/pci_passthrough_p1.cfg new file mode 100644 index 00000000..f5ed9451 --- /dev/null +++ b/config/tests/guest/libvirt/pci_passthrough_p1.cfg @@ -0,0 +1,91 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 +# number_vfs = 2 +number_vfs = "Enter the no.of Virtual Function's to be created for each PF" +# Eg: 0000:05:00.0 +pf_filter = "ENTER.YOUR.PCI.LABEL" +libvirt_pci_net_ip = "ENTER.YOUR.IP" +libvirt_pci_server_ip = "ENTER.YOUR.SERVER.IP" +libvirt_pci_net_mask = "ENTER.YOUR.NETMASK" +# Eg: 0000:05:00.0 +libvirt_pci_net_dev_name = "ENTER.YOUR.PCI.LABEL" +libvirt_pci_storage_dev_label = "ENTER.YOUR.PCI.LABEL" +# enter timeout value +timeout = "ENTER.YOUR.TIMEOUT" +# model is dependent on architecture +# for power architecture it is pci-root +# index should be other than default VPHB i.e 0 +model = "ENTER.YOUR.DEVICE.MODEL" +# enter value for how many times hotplug/unplug will happen +# except stress test remaining all tests it will be 1 +stress_val = "1" +# Please enter the PCI device label for +# a network device. We will attach this +# device to guest. Then this network device +# will be unavailable on host. +# E.g: 0000:05:00.0 +libvirt_pci_net_dev_label = "ENTER.YOUR.PCI.LABEL" +# enter the ioa system bus info +# this value wil be based on the system bus info +# if your system is 32-bit then use ioa-bus-error +# if your system is 64-bit then use ioa-bus-error-64 +ioa_system_info = "ioa-bus-error" +# enter the functioninjection values your system supports 4 or 6 +func = "6" +# enter the number of eeh hits you want to trigger +# after this the device will be permanently disabled +max_freeze = "5" + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - device_passthrough: + only libvirt_pci_passthrough.default.NIC.Normal_passthrough,libvirt_pci_passthrough.default.STORAGE.Normal_passthrough,libvirt_pci_passthrough.passthrough_reboot.NIC.Normal_passthrough,libvirt_pci_passthrough.passthrough_reboot.STORAGE.Normal_passthrough,libvirt_pci_passthrough.passthrough_suspend.NIC.Normal_passthrough,libvirt_pci_passthrough.passthrough_suspend.STORAGE.Normal_passthrough,libvirt_pci_passthrough.passthrough_shutdown_start.NIC.Normal_passthrough,libvirt_pci_passthrough.passthrough_shutdown_start.STORAGE.Normal_passthrough + + - hotplug_hotunplug_passthrough: + only libvirt_pci_passthrough_hotplug.flood_ping.PCI,libvirt_pci_passthrough_hotplug.reboot.PCI,libvirt_pci_passthrough_hotplug.virsh_dumpxml.PCI,libvirt_pci_passthrough_hotplug.multiple_hotplug_hotunplug.PCI + no libvirt_pci_passthrough_hotplug.stress_test.PCI,libvirt_pci_passthrough_hotplug.virsh_dump.PCI + + - pci_passthrough_eeh: + only libvirt_pci_passthrough_eeh.passthrough_eeh_host.PCI_NIC.Normal_passthrough,libvirt_pci_passthrough_eeh.passthrough_eeh_host.PCI_STORAGE.Normal_passthrough + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/pci_passthrough_p2.cfg b/config/tests/guest/libvirt/pci_passthrough_p2.cfg new file mode 100644 index 00000000..4bb1024e --- /dev/null +++ b/config/tests/guest/libvirt/pci_passthrough_p2.cfg @@ -0,0 +1,87 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 +# number_vfs = 2 +number_vfs = "Enter the no.of Virtual Function's to be created for each PF" +# Eg: 0000:05:00.0 +pf_filter = "ENTER.YOUR.PCI.LABEL" +libvirt_pci_net_ip = "ENTER.YOUR.IP" +libvirt_pci_server_ip = "ENTER.YOUR.SERVER.IP" +libvirt_pci_net_mask = "ENTER.YOUR.NETMASK" +# Eg: 0000:05:00.0 +libvirt_pci_net_dev_name = "ENTER.YOUR.PCI.LABEL" +libvirt_pci_storage_dev_label = "ENTER.YOUR.PCI.LABEL" +# enter timeout value +timeout = "ENTER.YOUR.TIMEOUT" +# model is dependent on architecture +# for power architecture it is pci-root +# index should be other than default VPHB i.e 0 +model = "ENTER.YOUR.DEVICE.MODEL" +# enter value for how many times hotplug/unplug will happen +# except stress test remaining all tests it will be 1 +stress_val = "1" +# Please enter the PCI device label for +# a network device. We will attach this +# device to guest. Then this network device +# will be unavailable on host. +# E.g: 0000:05:00.0 +libvirt_pci_net_dev_label = "ENTER.YOUR.PCI.LABEL" +# enter the ioa system bus info +# this value wil be based on the system bus info +# if your system is 32-bit then use ioa-bus-error +# if your system is 64-bit then use ioa-bus-error-64 +ioa_system_info = "ioa-bus-error" +# enter the functioninjection values your system supports 4 or 6 +func = "6" +# enter the number of eeh hits you want to trigger +# after this the device will be permanently disabled +max_freeze = "5" + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - device_passthrough: + only libvirt_pci_passthrough.passthrough_multiple_reboots.NIC.Normal_passthrough,libvirt_pci_passthrough.passthrough_multiple_reboots.STORAGE.Normal_passthrough + + - hotplug_hotunplug_passthrough: + only libvirt_pci_passthrough_hotplug.suspend.PCI,libvirt_pci_passthrough_hotplug.multiple_hotplug_unplug_with_rand_reboot.PCI + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/pci_passthrough_p3.cfg b/config/tests/guest/libvirt/pci_passthrough_p3.cfg new file mode 100644 index 00000000..d78fd330 --- /dev/null +++ b/config/tests/guest/libvirt/pci_passthrough_p3.cfg @@ -0,0 +1,88 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 +# number_vfs = 2 +number_vfs = "Enter the no.of Virtual Function's to be created for each PF" +# Eg: 0000:05:00.0 +pf_filter = "ENTER.YOUR.PCI.LABEL" +libvirt_pci_net_ip = "ENTER.YOUR.IP" +libvirt_pci_server_ip = "ENTER.YOUR.SERVER.IP" +libvirt_pci_net_mask = "ENTER.YOUR.NETMASK" +# Eg: 0000:05:00.0 +libvirt_pci_net_dev_name = "ENTER.YOUR.PCI.LABEL" +libvirt_pci_storage_dev_label = "ENTER.YOUR.PCI.LABEL" +# enter timeout value +timeout = "ENTER.YOUR.TIMEOUT" +# model is dependent on architecture +# for power architecture it is pci-root +# index should be other than default VPHB i.e 0 +model = "ENTER.YOUR.DEVICE.MODEL" +# enter value for how many times hotplug/unplug will happen +# except stress test remaining all tests it will be 1 +stress_val = "1" +# Please enter the PCI device label for +# a network device. We will attach this +# device to guest. Then this network device +# will be unavailable on host. +# E.g: 0000:05:00.0 +libvirt_pci_net_dev_label = "ENTER.YOUR.PCI.LABEL" +# enter the ioa system bus info +# this value wil be based on the system bus info +# if your system is 32-bit then use ioa-bus-error +# if your system is 64-bit then use ioa-bus-error-64 +ioa_system_info = "ioa-bus-error" +# enter the functioninjection values your system supports 4 or 6 +func = "6" +# enter the number of eeh hits you want to trigger +# after this the device will be permanently disabled +max_freeze = "5" + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - device_passthrough: + only libvirt_pci_passthrough.default.NIC.SRIOV,libvirt_pci_passthrough.default.STORAGE.SRIOV,libvirt_pci_passthrough.passthrough_reboot.NIC.SRIOV,libvirt_pci_passthrough.passthrough_reboot.STORAGE.SRIOV,libvirt_pci_passthrough.passthrough_suspend.NIC.SRIOV,libvirt_pci_passthrough.passthrough_suspend.STORAGE.SRIOV,libvirt_pci_passthrough.passthrough_shutdown_start.NIC.SRIOV,libvirt_pci_passthrough.passthrough_shutdown_start.STORAGE.SRIOV,libvirt_pci_passthrough.passthrough_multiple_reboots.NIC.SRIOV,libvirt_pci_passthrough.passthrough_multiple_reboots.STORAGE.SRIOV + + - pci_passthrough_eeh: + only libvirt_pci_passthrough_eeh.passthrough_eeh_guest.PCI_NIC.Normal_passthrough,libvirt_pci_passthrough_eeh.passthrough_eeh_guest.PCI_STORAGE.Normal_passthrough + + - guest_remove: + only remove_guest.without_disk + diff --git a/config/tests/guest/libvirt/ras.cfg b/config/tests/guest/libvirt/ras.cfg index f118b951..13297218 100644 --- a/config/tests/guest/libvirt/ras.cfg +++ b/config/tests/guest/libvirt/ras.cfg @@ -1,26 +1,36 @@ include tests-shared.cfg + +# Basic VM credentials and identification username = root password = 123456 main_vm = avocado-vt-vm1 vms = avocado-vt-vm1 + #Network nettype = bridge netdst=virbr0 + # Using Text mode of installation display = 'nographic' + take_regular_screendumps = no keep_screendumps_on_error = no keep_screendumps = no store_vm_register = no + +# Binaries path virt_install_binary = /usr/bin/virt-install qemu_img_binary = /usr/bin/qemu-img qemu_binary = /usr/bin/qemu-system-ppc64 emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings use_os_variant=yes hvm_or_pv = hvm machine_type = pseries only bridge no xen, lxc, esx, ovmf + #Filterout unwanted disk types no ide,xenblk,lsi_scsi,ahci,sd no qed,qcow2v3,raw_dd,vmdk, usb2 @@ -31,28 +41,52 @@ only no_9p_export only no_pci_assignable only (image_backend=filesystem) only smallpages + +# CPU and Memory smp = 32 vcpu_cores = 32 vcpu_threads = 1 vcpu_sockets = 1 -# 32G mem = 32768 +# Test Variants variants: - guest_import: only unattended_install.import.import.default_install.aio_native - guest_ras: variants: - - non_acl: + # virsh dump tests with no crash utility + - virsh_dump.positive_test: only virsh.dump.positive_test.non_acl + no virsh.dump.positive_test.non_acl.pause_dump.live + no virsh.dump.positive_test.non_acl.live_dump + no virsh.dump.positive_test.non_acl.invalid_image_format - - acl_test: - action_lookup = "connect_driver:QEMU domain_name:${main_vm}" - only virsh.dump.positive_test.acl_test + # # virsh dump acl tests with no crash utility - COMMENTED OUT FOR NOW + # - virsh_dump.acl_test: + # action_lookup = "connect_driver:QEMU domain_name:${main_vm}" + # only virsh.dump.positive_test.acl_test + # no virsh.dump.positive_test.acl_test.pause_dump.live + # no virsh.dump.positive_test.acl_test.live_dump + # no virsh.dump.positive_test.acl_test.invalid_image_format - - negative: + # virsh dump negative tests with no crash utility + - virsh_dump.negative_test: only virsh.dump.negative_test + no virsh.dump.negative_test.invalid_option2 + no virsh.dump.negative_test.invalid_option3 + + # virsh dump tests with crash utility + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests + + # guest kdump tests + - guest_kdump: + only guest_kernel_debugging.guest_kdump + no guest_kernel_debugging.guest_kdump.kdump_with_stress + no guest_kernel_debugging.guest_kdump.two_guests_kdump_with_stress + no guest_kernel_debugging.guest_kdump.four_guests_kdump_with_stress - guest_remove: only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/ras_p1.cfg b/config/tests/guest/libvirt/ras_p1.cfg new file mode 100644 index 00000000..424a95ff --- /dev/null +++ b/config/tests/guest/libvirt/ras_p1.cfg @@ -0,0 +1,104 @@ +include tests-shared.cfg + +# Basic VM credentials and identification +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 + +#Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' + +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no + +# Binaries path +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages + +# CPU and Memory +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +mem = 32768 + +# Test Variants +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_ras: + variants: + # virsh dump tests with no crash utility + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.no_option + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.pause_dump.crash + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.pause_dump.reset + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.crash_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.reset_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.lzop_format_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.gzip_format_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.bzip2_format_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.xz_format_dump + + # virsh dump tests with crash utility + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests.memory_dump.elf_format + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests.memory_dump.kdump-zlib_format + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests.memory_dump.kdump-lzo_format + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests.memory_dump.kdump-snappy_format + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests.memory_crash_dump + - virsh_dump.crash_utility_tests: + only virsh.dump.crash_utility_tests.memory_bypass_cache_dump + + # guest kdump tests + - guest_kdump: + only guest_kernel_debugging.guest_kdump.kdump_no_stress + - guest_kdump: + only guest_kernel_debugging.guest_kdump.kdump_with_stress_crash_utility + - guest_kdump: + only guest_kernel_debugging.guest_kdump.two_guests_kdump_no_stress + - guest_kdump: + only guest_kernel_debugging.guest_kdump.two_guests_kdump_with_stress_crash_utility + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/ras_p2.cfg b/config/tests/guest/libvirt/ras_p2.cfg new file mode 100644 index 00000000..a38200fb --- /dev/null +++ b/config/tests/guest/libvirt/ras_p2.cfg @@ -0,0 +1,76 @@ +include tests-shared.cfg + +# Basic VM credentials and identification +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 + +#Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' + +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no + +# Binaries path +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages + +# CPU and Memory +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +mem = 32768 + +# Test Variants +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_ras: + variants: + # virsh dump tests with no crash utility + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.bypass_cache_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.bypass_cache_reset_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.include_guest_memory_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.exclude_guest_memory_dump + + # guest kdump tests + - guest_kdump: + only guest_kernel_debugging.guest_kdump.four_guests_kdump_no_stress + - guest_kdump: + only guest_kernel_debugging.guest_kdump.four_guests_kdump_with_stress_crash_utility + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/ras_p3.cfg b/config/tests/guest/libvirt/ras_p3.cfg new file mode 100644 index 00000000..98079ada --- /dev/null +++ b/config/tests/guest/libvirt/ras_p3.cfg @@ -0,0 +1,92 @@ +include tests-shared.cfg + +# Basic VM credentials and identification +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 + +#Network +nettype = bridge +netdst=virbr0 + +# Using Text mode of installation +display = 'nographic' + +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no + +# Binaries path +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 + +# VM settings +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf + +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages + +# CPU and Memory +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +mem = 32768 + +# Test Variants +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_ras: + variants: + # virsh dump tests with no crash utility + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_dump.default_format + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_dump.elf_format + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_dump.kdump-zlib_format + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_dump.kdump-lzo_format + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_dump.kdump-snappy_format + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_crash_dump + - virsh_dump.positive_test: + only virsh.dump.positive_test.non_acl.memory_bypass_cache_dump + + # virsh dump negative tests with no crash utility + - virsh_dump.negative_test: + only virsh.dump.negative_test.no_dump_file + - virsh_dump.negative_test: + only virsh.dump.negative_test.unexist_dir_dump + - virsh_dump.negative_test: + only virsh.dump.negative_test.invalid_option1 + - virsh_dump.negative_test: + only virsh.dump.negative_test.invalid_option4 + - virsh_dump.negative_test: + only virsh.dump.negative_test.shutoff_dump + - virsh_dump.negative_test: + only virsh.dump.negative_test.acl_test + - virsh_dump.negative_test: + only virsh.dump.negative_test.no_space_left + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/regression.cfg b/config/tests/guest/libvirt/regression.cfg index d067cbd8..4755724d 100644 --- a/config/tests/guest/libvirt/regression.cfg +++ b/config/tests/guest/libvirt/regression.cfg @@ -353,13 +353,17 @@ variants: only virsh.attach_detach_disk.attach_disk.error_test.no_vm_name,virsh.attach_detach_disk.attach_disk.normal_test.host_block_vm_id,virsh.attach_detach_disk.detach_disk.error_test.no_vm_name,virsh.attach_detach_disk.detach_disk.normal_test.host_block_vm_id - change-media: only virsh.change_media.cdrom_test.scsi_.positive_test.eject.none.running_guest + - delete_guest: + only remove_guest.without_disk + - import: + vcpu = 4 + smp = 4 + vcpu_cores = 4 + vcpu_threads = 1 + vcpu_sockets = 1 + mem = 4096 + only unattended_install.import.import.default_install.aio_native - memory: - max_mem_rt = 67108864 - max_mem = 33554432 - vcpu = 32 - numa_cells = "{'id':'0','cpus':'0-31','memory':'33554432','unit':'KiB'}" - test_dom_xml = "no" - tg_size = 8388608 only libvirt_mem.positive_test,libvirt_mem.negative_test no libvirt_mem.positive_test.hugepages - cpu: diff --git a/config/tests/guest/libvirt/storage.cfg b/config/tests/guest/libvirt/storage.cfg index fa610b87..47be4c24 100644 --- a/config/tests/guest/libvirt/storage.cfg +++ b/config/tests/guest/libvirt/storage.cfg @@ -83,8 +83,11 @@ variants: - vol_resize: only virsh.vol_resize - no virsh.vol_resize.positive_test.luks_encrypt.non_acl.allocate_capacity - no virsh.vol_resize.positive_test.luks_encrypt.non_acl.delta_allocate_capacity + # removing below luks_encrypt raw, qcow2 format non acl allocate capacity related test because the operation not supported for qcow2 and raw type encrypted volume + no virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.allocate_capacity + no virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.allocate_capacity + no virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_allocate_capacity + no virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_allocate_capacity - vol_download_upload: only virsh.vol_download_upload diff --git a/config/tests/guest/libvirt/storage_p1.cfg b/config/tests/guest/libvirt/storage_p1.cfg new file mode 100644 index 00000000..0e115204 --- /dev/null +++ b/config/tests/guest/libvirt/storage_p1.cfg @@ -0,0 +1,120 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_storage: + variants: + - pool: + only virsh.pool.positive_test.pool_type_dir,virsh.pool.positive_test.pool_type_fs.source_format_ext4,virsh.pool.positive_test.pool_type_fs.source_format_xfs,virsh.pool.positive_test.pool_type_logical.source_format_lvm2,virsh.pool.positive_test.pool_type_logical.source_format_auto,virsh.pool.positive_test.pool_type_netfs.source_format_nfs.with_source_protocol_ver,virsh.pool.positive_test.pool_type_iscsi.ipv4_target,virsh.pool.positive_test.pool_type_scsi,virsh.pool.positive_test.multiple_iqn + + - pool_create: + only virsh.pool_create.positive_test.from_pre_def_pool.scsi_pool,virsh.pool_create.positive_test.from_pre_def_pool.mpath_pool,virsh.pool_create.positive_test.from_pre_def_pool.dir_pool,virsh.pool_create.positive_test.from_pre_def_pool.nfs_pool,virsh.pool_create.positive_test.from_pre_def_pool.iscsi_pool + + - pool_create_as: + only virsh.pool_create_as + + - pool_edit: + only virsh.pool_edit.positive_test.name_option.dir_pool.edit_pool_target,virsh.pool_edit.positive_test.name_option.dir_pool.edit_redefine,virsh.pool_edit.positive_test.name_option.disk_pool.edit_pool_format.gpt,virsh.pool_edit.positive_test.uuid_option.dir_pool.edit_pool_target + + - pool_acl: + only virsh.pool_acl.positive_test.dir_pool.undefine_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.define_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.build_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.start_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.destroy_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.refresh_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.vol_list_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.delete_acl.acl_test,virsh.pool_acl.positive_test.dir_pool.list_dumpxml_acl.acl_test + no virsh.pool_acl.positive_test.non_dir_pool.pool_type_disk.define_acl.acl_test + + - volume: + only virsh.volume.dir_pool.vol_encrypt_none.vol_format_raw.vol_allocation.normal_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_raw.vol_allocation.zero_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_qcow2.vol_allocation.normal_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_qcow2.vol_allocation.zero_size,virsh.volume.logical_pool.vol_allocation.normal_size,virsh.volume.logical_pool.vol_allocation.zero_size,virsh.volume.netfs_pool.nfs_format.vol_allocation.normal_size,virsh.volume.netfs_pool.nfs_format.vol_allocation.zero_size + + - domblkstat: + only virsh.domblkstat.normal_test.id_option,virsh.domblkstat.normal_test.name_option,virsh.domblkstat.normal_test.paused_option,virsh.domblkstat.normal_test.uuid_option + + - vol_create: + only virsh.vol_create.create_as.by_name.positive_test.logical_pool.normal_vol.non_encryption,virsh.vol_create.create_as.by_name.positive_test.logical_pool.thin_vol.non_encryption,virsh.vol_create.create_as.by_name.positive_test.logical_pool.deactivate_vol.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.logical_pool.normal_vol.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.logical_pool.thin_vol.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.logical_pool.snapshot_vol.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.logical_pool.deactivate_vol.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.with_clusterSize,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.with_clusterSize,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.dir.acl_test.non_encryption + no virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_none.pool_format_none.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux.pool_format_none.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux-swap.pool_format_none.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux-lvm.pool_format_none.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_linux-raid.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_none.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.logical_pool.normal_vol.luks_encryption + + - vol_resize: + only virsh.vol_resize.positive_test.non_encrypt.non_acl.allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.non_acl.allocate_capacity.fs_pool,virsh.vol_resize.positive_test.non_encrypt.non_acl.allocate_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.non_acl.delta_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.non_acl.delta_capacity.fs_pool,virsh.vol_resize.positive_test.non_encrypt.non_acl.delta_allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.non_acl.delta_allocate_capacity.fs_pool,virsh.vol_resize.positive_test.non_encrypt.acl_test.sparse_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.acl_test.sparse_capacity.fs_pool,virsh.vol_resize.positive_test.non_encrypt.acl_test.allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.acl_test.allocate_capacity.fs_pool,virsh.vol_resize.positive_test.non_encrypt.acl_test.delta_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.acl_test.delta_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.sparse_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.sparse_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.sparse_capacity.fs_pool + + - vol_download_upload: + only virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.acl_test.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.acl_test.0-1024,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.download.non_acl.0-1024 + no virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.acl_test.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.acl_test.0-1024 + + - vol_clone_wipe: + only virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.raw_f.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.raw_f.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.raw_f.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.logical,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.raw_f.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.raw_f.pool_type.fs + + - update_device_matrix: + updatedevice_target_bus = "scsi" + updatedevice_target_dev = "sdc" + only virsh.update_device_matrix.pre_vm_state_running.dt_option_live.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_config.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_current.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_default.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live_config.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live.at_option_live.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_config.at_option_live.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_current.at_option_live.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_default.at_option_live.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_config.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_current.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_default.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live_config.at_option_live.dt_okay_at_okay + + - attach_device: + variants: + - non_block_virtio_file: + only virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional + + - block_virtio_file: + vadu_dev_obj_devidx_VirtualDiskBasic = 0 + only virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional + + - attach_device_matrix: + only virsh.attach_device_matrix.pre_vm_state_running.at_option_live.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_config.dt_option_live.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_current.dt_option_live.at_okay_dt_okay + + - libvirt_scsi: + only libvirt_scsi.disk_type_img + + - attach_detach_disk_matrix: + at_dt_disk_bus_type = "scsi" + at_dt_disk_device_target = "sdc" + only virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_config.dt_option_live.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_config.dt_option_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_config.dt_option_current.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_config.dt_option_default.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_config.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_current.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_current.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_current.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_default.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_default.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_default.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_default.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_default.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live_config.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live_config.dt_option_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live_config.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live_config.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_running.at_option_live_config.dt_option_live_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live.dt_option_live.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live.dt_option_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live.dt_option_current.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live.dt_option_default.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live.dt_option_live_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live.dt_option_live_config.at_okay_dt_error + + - attach_detach_disk: + variants: + - virtio: + at_dt_disk_device_target = "vdc" + at_dt_disk_bus_type = "virtio" + only virsh.attach_detach_disk.attach_disk.normal_test.host_block_vm_id,virsh.attach_detach_disk.attach_disk.normal_test.host_block_vm_name,virsh.attach_detach_disk.attach_disk.normal_test.vm_suspend,virsh.attach_detach_disk.attach_disk.normal_test.host_block_vm_uuid,virsh.attach_detach_disk.attach_disk.normal_test.image_file_no_option,virsh.attach_detach_disk.attach_disk.normal_test.vm_shutdown_config,virsh.attach_detach_disk.attach_disk.normal_test.vm_shutdown_serial_config,virsh.attach_detach_disk.attach_disk.normal_test.vm_running_config,virsh.attach_detach_disk.attach_disk.normal_test.vm_shutdown_persistent,virsh.attach_detach_disk.attach_disk.normal_test.vm_running_persistent,virsh.attach_detach_disk.attach_disk.normal_test.attach_disk_type.file_disk_type,virsh.attach_detach_disk.attach_disk.normal_test.attach_disk_type.block_disk_type,virsh.attach_detach_disk.attach_disk.normal_test.attach_disk_type.block_disk_type_logical,virsh.attach_detach_disk.attach_disk.normal_test.attach_disk_type.block_disk_attach_twice_with_systemlink_change,virsh.attach_detach_disk.attach_disk.normal_test.attach_disk_image_format.raw_format,virsh.attach_detach_disk.attach_disk.normal_test.attach_disk_image_format.qcow2_format,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.image_file_no_mode,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.no_mode,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_sourcetype,virsh.attach_detach_disk.detach_disk.normal_test.host_block_vm_id,virsh.attach_detach_disk.detach_disk.normal_test.host_block_vm_name,virsh.attach_detach_disk.detach_disk.normal_test.host_block_vm_uuid,virsh.attach_detach_disk.detach_disk.normal_test.image_file_no_option,virsh.attach_detach_disk.detach_disk.normal_test.vm_running_config,virsh.attach_detach_disk.detach_disk.normal_test.vm_shutdown_persistent,virsh.attach_detach_disk.detach_disk.normal_test.vm_running_persistent,virsh.attach_detach_disk.detach_disk.normal_test.twice_diff_target,virsh.attach_detach_disk.detach_disk.normal_test.twice_diff_target_with_shareable,virsh.attach_detach_disk.detach_disk.normal_test.special_disk_name.local_disk_name,virsh.attach_detach_disk.detach_disk.normal_test.special_disk_name.attch_disk_name,virsh.attach_detach_disk.detach_disk.normal_test.detach_disk_with_print_xml,virsh.attach_detach_disk.detach_disk.normal_test.attach_disk_image_format.raw_format,virsh.attach_detach_disk.detach_disk.normal_test.attach_disk_image_format.qcow2_format + + - vm_suspend: + time_sleep = 5 + only virsh.attach_detach_disk.detach_disk.normal_test.vm_suspend + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/storage_p2.cfg b/config/tests/guest/libvirt/storage_p2.cfg new file mode 100644 index 00000000..9f87fee0 --- /dev/null +++ b/config/tests/guest/libvirt/storage_p2.cfg @@ -0,0 +1,111 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_storage: + variants: + - pool: + only virsh.pool.positive_test.pool_type_fs.source_format_ext3,virsh.pool.positive_test.pool_type_fs.source_format_vfat,virsh.pool.positive_test.pool_type_netfs.source_format_nfs.no_source_protocol_ver,virsh.pool.positive_test.special_pool_name + no virsh.pool.positive_test.pool_type_rbd + + - pool_edit: + only virsh.pool_edit.positive_test.uuid_option.dir_pool.edit_redefine,virsh.pool_edit.positive_test.uuid_option.disk_pool.edit_pool_format.gpt + + - pool_acl: + only virsh.pool_acl.positive_test.non_dir_pool.pool_type_fs.undefine_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_fs.build_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_fs.destroy_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_logical.undefine_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_logical.define_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_logical.build_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_logical.start_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_logical.destroy_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_logical.vol_list_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_netfs.undefine_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_netfs.define_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_netfs.build_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_netfs.start_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_netfs.destroy_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_netfs.vol_list_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_iscsi.undefine_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_iscsi.define_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_iscsi.build_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_iscsi.start_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_iscsi.destroy_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_iscsi.vol_list_acl.acl_test,virsh.pool_acl.negative_test.undefine_acl.acl_test + no virsh.pool_acl.positive_test.non_dir_pool.pool_type_disk.undefine_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_disk.build_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_disk.start_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_disk.destroy_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_disk.vol_list_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_fs.define_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_fs.start_acl.acl_test,virsh.pool_acl.positive_test.non_dir_pool.pool_type_fs.vol_list_acl.acl_test + + - volume: + only virsh.volume.dir_pool.vol_encrypt_none.vol_format_qcow.vol_allocation.normal_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_qcow.vol_allocation.zero_size,virsh.volume.netfs_pool.glusterfs_format.vol_allocation.normal_size,virsh.volume.netfs_pool.glusterfs_format.vol_allocation.zero_size + + - domblkstat: + only virsh.domblkstat.normal_test.human_option,virsh.domblkstat.normal_test.no_dev_option.normal_output,virsh.domblkstat.normal_test.no_dev_option.human_output + + - vol_create: + only virsh.vol_create.create_as.by_name.positive_test.logical_pool.snapshot_vol.non_encryption,virsh.vol_create.create_as.by_name.positive_test.logical_pool.incomplete_target.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.with_clusterSize,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.with_clusterSize,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.with_clusterSize,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.with_clusterSize,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.with_clusterSize,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.with_clusterSize,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.with_clusterSize,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.with_clusterSize,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.logical_pool.normal_vol.non_encryption,virsh.vol_create.create.positive_test.logical_pool.thin_vol.non_encryption,virsh.vol_create.create.positive_test.logical_pool.snapshot_vol.non_encryption,virsh.vol_create.create.positive_test.logical_pool.deactivate_vol.non_encryption,virsh.vol_create.create.positive_test.logical_pool.incomplete_target.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.non_acl.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.acl_test.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.fs.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.with_clusterSize,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.fs.non_encryption + no virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_none.pool_format_gpt.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_extended.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_none.pool_format_gpt.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux-swap.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux-lvm.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_linux-raid.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_extended.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_none.pool_format_none.luks_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_none.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_none.pool_format_gpt.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux-swap.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux-lvm.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_linux-raid.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_extended.pool_format_none.non_encryption,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.acl_test.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.upload.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.upload.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.upload.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.upload.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.acl_test.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.download.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.upload.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.upload.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.upload.acl_test.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.disk_pool.upload.non_acl.no_options + + - vol_resize: + only virsh.vol_resize.positive_test.non_encrypt.non_acl.sparse_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.non_acl.sparse_capacity.fs_pool,virsh.vol_resize.positive_test.non_encrypt.acl_test.delta_allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.non_encrypt.acl_test.delta_allocate_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.sparse_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_capacity.dir_pool.with_clusterSize,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_capacity.fs_pool,virsh.vol_resize.negative_test.no_space_allocation,virsh.vol_resize.negative_test.unsupport_pool_type,virsh.vol_resize.negative_test.acl_test + no virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.allocate_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_allocate_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.allocate_capacity.dir_pool.default,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.allocate_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_allocate_capacity.dir_pool.default + + - vol_download_upload: + only virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.acl_test.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.download.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.acl_test.1024-4092,virsh.vol_download_upload.download_upload.non_encrypt.dir_pool.default.upload.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.acl_test.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.download.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.upload.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.upload.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.fs_pool.upload.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.disk_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.logical_pool.upload.acl_test.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.download.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.download.non_acl.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.default.upload.non_acl.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.with_clusterSize.download.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.dir_pool.with_clusterSize.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.fs_pool.upload.non_acl.no_options + + - vol_clone_wipe: + only virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.sparse_file.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.sparse_file.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.raw_f.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.raw_f.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.raw_f.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.sparse_file.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.sparse_file.pool_type.fs,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.fs,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.dir.with_clusterSize,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.fs,virsh.vol_clone_wipe.negative_test.invalid_alg,virsh.vol_clone_wipe.negative_test.acl_test,virsh.vol_clone_wipe.negative_test.bad_cloned_vol_name + no virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.disk_part.pool_type.disk,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.disk_part.pool_type.disk,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.disk_part.pool_type.disk,virsh.vol_clone_wipe.negative_test.oversize_vol + + - update_device_matrix: + updatedevice_target_bus = "scsi" + updatedevice_target_dev = "sdc" + only virsh.update_device_matrix.pre_vm_state_running.dt_option_live.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_config.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_config.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_config.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_config.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_current.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_current.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_current.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_current.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_default.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_default.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_default.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_default.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live_config.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live_config.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live_config.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_running.dt_option_live_config.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live.at_option_config.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live.at_option_current.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live.at_option_default.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live.at_option_live_config.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_config.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_config.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_config.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_config.at_option_live_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_current.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_current.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_current.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_current.at_option_live_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_default.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_default.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_default.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_default.at_option_live_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live_config.at_option_live.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live_config.at_option_config.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live_config.at_option_current.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live_config.at_option_default.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_shutoff.dt_option_live_config.at_option_live_config.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_config.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_config.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_config.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_config.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_current.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_current.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_current.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_current.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_default.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_default.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_default.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_default.at_option_live_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live_config.at_option_config.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live_config.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live_config.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_paused.dt_option_live_config.at_option_live_config.dt_okay_at_okay + + - attach_device: + variants: + - non_block_virtio_file: + only virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.without_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.without_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument + + - block_virtio_file: + vadu_dev_obj_devidx_VirtualDiskBasic = 0 + only virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument + no virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional + + - attach_device_matrix: + only virsh.attach_device_matrix.pre_vm_state_running.at_option_live.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_live.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_live.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_live.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_config.dt_option_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_config.dt_option_current.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_config.dt_option_default.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_config.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_current.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_current.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_default.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_default.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_default.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_default.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_default.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_running.at_option_live_config.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_live_config.dt_option_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_live_config.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_live_config.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_running.at_option_live_config.dt_option_live_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live.dt_option_live.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live.dt_option_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live.dt_option_current.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live.dt_option_default.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live.dt_option_live_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_config.dt_option_live.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_config.dt_option_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_config.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_config.dt_option_default.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_config.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_current.dt_option_live.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_current.dt_option_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_current.dt_option_default.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_default.dt_option_live.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_default.dt_option_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_default.dt_option_current.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_default.dt_option_default.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_default.dt_option_live_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_live.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_current.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_default.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_live_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_config.dt_option_live.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_config.dt_option_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_config.dt_option_current.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_config.dt_option_default.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_config.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_current.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_current.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_current.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_default.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_default.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_default.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_default.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_default.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live_config.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live_config.dt_option_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live_config.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live_config.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_paused.at_option_live_config.dt_option_live_config.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_config.dt_option_live.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_config.dt_option_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_config.dt_option_current.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_config.dt_option_default.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_config.dt_option_live_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_current.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_current.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_current.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_default.dt_option_live.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_default.dt_option_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_default.dt_option_current.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_default.dt_option_default.at_okay_dt_okay,virsh.attach_device_matrix.pre_vm_state_transient.at_option_default.dt_option_live_config.at_okay_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live_config.dt_option_live.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live_config.dt_option_config.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live_config.dt_option_current.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live_config.dt_option_default.at_error_dt_error,virsh.attach_device_matrix.pre_vm_state_transient.at_option_live_config.dt_option_live_config.at_error_dt_error + + - attach_detach_disk_matrix: + at_dt_disk_bus_type = "scsi" + at_dt_disk_device_target = "sdc" + only virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_config.dt_option_live.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_config.dt_option_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_config.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_config.dt_option_default.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_config.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_current.dt_option_live.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_current.dt_option_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_current.dt_option_default.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_default.dt_option_live.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_default.dt_option_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_default.dt_option_current.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_default.dt_option_default.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_default.dt_option_live_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_live.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_current.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_default.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_shutoff.at_option_live_config.dt_option_live_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_config.dt_option_live.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_config.dt_option_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_config.dt_option_current.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_config.dt_option_default.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_config.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_current.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_current.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_current.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_default.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_default.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_default.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_default.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_default.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live_config.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live_config.dt_option_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live_config.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live_config.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_paused.at_option_live_config.dt_option_live_config.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_config.dt_option_live.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_config.dt_option_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_config.dt_option_current.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_config.dt_option_default.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_config.dt_option_live_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_current.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_current.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_current.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_current.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_current.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_default.dt_option_live.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_default.dt_option_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_default.dt_option_current.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_default.dt_option_default.at_okay_dt_okay,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_default.dt_option_live_config.at_okay_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live_config.dt_option_live.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live_config.dt_option_config.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live_config.dt_option_current.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live_config.dt_option_default.at_error_dt_error,virsh.attach_detach_disk_matrix.pre_vm_state_transient.at_option_live_config.dt_option_live_config.at_error_dt_error + + - attach_detach_disk: + variants: + - virtio: + at_dt_disk_device_target = "vdc" + at_dt_disk_bus_type = "virtio" + only virsh.attach_detach_disk.attach_disk.normal_test.twice_diff_target,virsh.attach_detach_disk.attach_disk.normal_test.twice_diff_target_with_shareable,virsh.attach_detach_disk.attach_disk.normal_test.twice_multifunction_with_shareable,virsh.attach_detach_disk.attach_disk.normal_test.audit_check,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_cache.cache_none,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_cache.cache_default,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_cache.cache_writethrough,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_cache.cache_writeback,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_cache.cache_unsafe,virsh.attach_detach_disk.attach_disk.normal_test.only_attach_disk.option_cache.cache_directsync,virsh.attach_detach_disk.detach_disk.normal_test.audit_check + no virsh.attach_detach_disk.attach_disk.normal_test.twice_same_target_diff_scsi_address + + - guest_remove: + only remove_guest.without_disk diff --git a/config/tests/guest/libvirt/storage_p3.cfg b/config/tests/guest/libvirt/storage_p3.cfg new file mode 100644 index 00000000..f2ba0629 --- /dev/null +++ b/config/tests/guest/libvirt/storage_p3.cfg @@ -0,0 +1,106 @@ +include tests-shared.cfg +username = root +password = 123456 +main_vm = avocado-vt-vm1 +vms = avocado-vt-vm1 +#Network +nettype = bridge +netdst=virbr0 +# Using Text mode of installation +display = 'nographic' +take_regular_screendumps = no +keep_screendumps_on_error = no +keep_screendumps = no +store_vm_register = no +virt_install_binary = /usr/bin/virt-install +qemu_img_binary = /usr/bin/qemu-img +qemu_binary = /usr/bin/qemu-system-ppc64 +emulator_path = /usr/bin/qemu-system-ppc64 +use_os_variant=yes +hvm_or_pv = hvm +machine_type = pseries +only bridge +no xen, lxc, esx, ovmf +#Filterout unwanted disk types +no ide,xenblk,lsi_scsi,ahci,sd +no qed,qcow2v3,raw_dd,vmdk, usb2 +no e1000-82540em,e1000-82545em,e1000-82544gc,xennet,nic_custom +only no_virtio_rng +only smp2 +only no_9p_export +only no_pci_assignable +only (image_backend=filesystem) +only smallpages +smp = 32 +vcpu_cores = 32 +vcpu_threads = 1 +vcpu_sockets = 1 +# 32G +mem = 32768 + +variants: + - guest_import: + only unattended_install.import.import.default_install.aio_native + + - guest_storage: + variants: + - pool: + only virsh.pool.positive_test.pool_type_fs.source_format_ext2,virsh.pool.negative_test.invalid_pool_name,virsh.pool.negative_test.same_iqn + + - pool_create: + only virsh.pool_create.negative_test.invalid_extra_option,virsh.pool_create.negative_test.no_xml_file,virsh.pool_create.negative_test.invalid_xml_file,virsh.pool_create.negative_test.invalid_source_format.disk_type,virsh.pool_create.negative_test.invalid_source_format.fs_type,virsh.pool_create.negative_test.invalid_source_format.no_disk_label,virsh.pool_create.negative_test.duplicate_pool_name,virsh.pool_create.negative_test.duplicate_pool_uuid,virsh.pool_create.negative_test.duplicate_pool_source,virsh.pool_create.negative_test.readonly_pool_create + + - pool_edit: + only virsh.pool_edit.positive_test.name_option.disk_pool.edit_pool_format.bsd,virsh.pool_edit.positive_test.name_option.disk_pool.edit_pool_format.dvh,virsh.pool_edit.positive_test.name_option.disk_pool.edit_pool_format.mac,virsh.pool_edit.positive_test.name_option.disk_pool.edit_pool_format.sun,virsh.pool_edit.positive_test.uuid_option.disk_pool.edit_pool_format.bsd,virsh.pool_edit.positive_test.uuid_option.disk_pool.edit_pool_format.dvh,virsh.pool_edit.positive_test.uuid_option.disk_pool.edit_pool_format.mac,virsh.pool_edit.positive_test.uuid_option.disk_pool.edit_pool_format.sun,virsh.pool_edit.negative_test.no_name.dir_pool.edit_pool_target,virsh.pool_edit.negative_test.no_name.dir_pool.edit_redefine,virsh.pool_edit.negative_test.no_name.disk_pool.edit_pool_format.bsd,virsh.pool_edit.negative_test.no_name.disk_pool.edit_pool_format.dvh,virsh.pool_edit.negative_test.no_name.disk_pool.edit_pool_format.gpt,virsh.pool_edit.negative_test.no_name.disk_pool.edit_pool_format.mac,virsh.pool_edit.negative_test.no_name.disk_pool.edit_pool_format.pc98,virsh.pool_edit.negative_test.no_name.disk_pool.edit_pool_format.sun,virsh.pool_edit.negative_test.invalid_name.dir_pool.edit_pool_target,virsh.pool_edit.negative_test.invalid_name.dir_pool.edit_redefine,virsh.pool_edit.negative_test.invalid_name.disk_pool.edit_pool_format.bsd,virsh.pool_edit.negative_test.invalid_name.disk_pool.edit_pool_format.dvh,virsh.pool_edit.negative_test.invalid_name.disk_pool.edit_pool_format.gpt,virsh.pool_edit.negative_test.invalid_name.disk_pool.edit_pool_format.mac,virsh.pool_edit.negative_test.invalid_name.disk_pool.edit_pool_format.pc98,virsh.pool_edit.negative_test.invalid_name.disk_pool.edit_pool_format.sun,virsh.pool_edit.negative_test.invalid_uuid.dir_pool.edit_pool_target,virsh.pool_edit.negative_test.invalid_uuid.dir_pool.edit_redefine,virsh.pool_edit.negative_test.invalid_uuid.disk_pool.edit_pool_format.bsd,virsh.pool_edit.negative_test.invalid_uuid.disk_pool.edit_pool_format.dvh,virsh.pool_edit.negative_test.invalid_uuid.disk_pool.edit_pool_format.gpt,virsh.pool_edit.negative_test.invalid_uuid.disk_pool.edit_pool_format.mac,virsh.pool_edit.negative_test.invalid_uuid.disk_pool.edit_pool_format.pc98,virsh.pool_edit.negative_test.invalid_uuid.disk_pool.edit_pool_format.sun + no virsh.pool_edit.positive_test.name_option.disk_pool.edit_pool_format.pc98,virsh.pool_edit.positive_test.uuid_option.disk_pool.edit_pool_format.pc98 + + - pool_acl: + only virsh.pool_acl.negative_test.define_acl.acl_test,virsh.pool_acl.negative_test.build_acl.acl_test,virsh.pool_acl.negative_test.start_acl.acl_test,virsh.pool_acl.negative_test.destroy_acl.acl_test,virsh.pool_acl.negative_test.refresh_acl.acl_test,virsh.pool_acl.negative_test.vol_list_acl.acl_test,virsh.pool_acl.negative_test.delete_acl.acl_test + + - volume: + only virsh.volume.dir_pool.vol_encrypt_none.vol_format_qed.vol_allocation.normal_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_qed.vol_allocation.zero_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_vmdk.vol_allocation.normal_size,virsh.volume.dir_pool.vol_encrypt_none.vol_format_vmdk.vol_allocation.zero_size + + - domblkstat: + only virsh.domblkstat.error_test.no_option,virsh.domblkstat.error_test.hex_id_option,virsh.domblkstat.error_test.invalid_id_option,virsh.domblkstat.error_test.unexpected_option,virsh.domblkstat.error_test.invalid_uuid_uuid,virsh.domblkstat.error_test.extra_option,virsh.domblkstat.error_test.only_name_option.extra_option,virsh.domblkstat.error_test.only_name_option.space_extra_option + + - vol_create: + only virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk_v4.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk_v4.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk_v5.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vmdk_v5.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_name.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_name.negative_test.unsupported_extra_option,virsh.vol_create.create_as.by_name.negative_test.iscsi_pool_without_format,virsh.vol_create.create_as.by_name.negative_test.scsi_pool_without_format,virsh.virsh.vol_create.create_as.by_name.negative_test.nfs_pool_malformed_size,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.dir,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.fs,virsh.vol_create.create_as.by_name.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.netfs,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.disk,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.iscsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.scsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.disk,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.iscsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.scsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.disk,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.iscsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.scsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.disk,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.iscsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.scsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.disk,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.iscsi,virsh.vol_create.create_as.by_name.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.scsi,virsh.vol_create.create_as.by_name.negative_test.acl_test,virsh.vol_create.create_as.by_name.negative_test.virsh_readonly_mode,virsh.vol_create.create_as.by_name.negative_test.bad_vol_name.forwardslash,virsh.vol_create.create_as.by_name.negative_test.bad_vol_name.backslash,virsh.vol_create.create_as.by_uuid.positive_test.logical_pool.incomplete_target.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk_v4.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk_v4.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk_v5.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vmdk_v5.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.fs.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.netfs.non_encryption,virsh.vol_create.create_as.by_uuid.negative_test.unsupported_extra_option,virsh.vol_create.create_as.by_uuid.negative_test.iscsi_pool_without_format,virsh.vol_create.create_as.by_uuid.negative_test.scsi_pool_without_format,virsh.vol_create.create_as.by_uuid.negative_test.nfs_pool_malformed_size,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.dir,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.fs,virsh.vol_create.create_as.by_uuid.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.netfs,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.disk,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.iscsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.scsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.disk,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.iscsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.scsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.disk,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.iscsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.scsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.disk,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.iscsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.scsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.disk,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.iscsi,virsh.vol_create.create_as.by_uuid.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.scsi,virsh.vol_create.create_as.by_uuid.negative_test.acl_test,virsh.vol_create.create_as.by_uuid.negative_test.virsh_readonly_mode,virsh.vol_create.create_as.by_uuid.negative_test.bad_vol_name.forwardslash,virsh.vol_create.create_as.by_uuid.negative_test.bad_vol_name.backslash,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.netfs.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_raw.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.dir.non_acl.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.fs.luks_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2.src_pool_type.netfs.with_clusterSize,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_prealloc.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2v3.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qcow2_with_compat.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.fs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_qed.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_iso.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk_v4.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk_v4.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk_v5.src_pool_type.dir.non_acl.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vmdk_v5.src_pool_type.dir.acl_test.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_vpc.src_pool_type.netfs.non_encryption,virsh.vol_create.create.positive_test.fs_like_pool.vol_format.v_none.src_pool_type.netfs.non_encryption,virsh.vol_create.create.negative_test.unsupported_extra_option,virsh.vol_create.create.negative_test.iscsi_pool_without_format,virsh.vol_create.create.negative_test.scsi_pool_without_format,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_raw.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_qed.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_bochs.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_cloop.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_dmg.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_iso.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vmdk.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_vpc.src_pool_type.netfs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.dir,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.fs,virsh.vol_create.create.negative_test.fs_like_pool_with_prealloc.none_qcow2_format.v_none.src_pool_type.netfs,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.disk,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.iscsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_raw.src_pool_type.scsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.disk,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.iscsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2.src_pool_type.scsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.disk,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.iscsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2v3.src_pool_type.scsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.disk,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.iscsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qcow2_with_compat.src_pool_type.scsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.disk,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.iscsi,virsh.vol_create.create.negative_test.none_fs_like_pool_with_format.vol_format.v_qed.src_pool_type.scsi,virsh.vol_create.create.negative_test.acl_test,virsh.vol_create.create.negative_test.bad_vol_name.forwardslash,virsh.vol_create.create.negative_test.bad_vol_name.backslash + no virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_fat16.pool_format_none.non_encryption,virsh.vol_create.create_as.by_name.positive_test.disk_pool.vol_format_fat32.pool_format_none.non_encryption,virsh.vol_create.create_as.by_name.negative_test.fs_pool_overcommit,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_fat16.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.positive_test.disk_pool.vol_format_fat32.pool_format_none.non_encryption,virsh.vol_create.create_as.by_uuid.negative_test.fs_pool_overcommit,virsh.vol_create.create.positive_test.disk_pool.vol_format_fat16.pool_format_none.non_encryption,virsh.vol_create.create.positive_test.disk_pool.vol_format_fat32.pool_format_none.non_encryption,virsh.vol_create.create.negative_test.fs_pool_overcommit,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional + + - vol_resize: + only virsh.vol_resize.positive_test.non_encrypt.non_acl.sparse_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.non_acl.delta_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.non_acl.delta_allocate_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.acl_test.sparse_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.acl_test.allocate_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.acl_test.delta_capacity.netfs,virsh.vol_resize.positive_test.non_encrypt.acl_test.delta_allocate_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.sparse_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.sparse_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_capacity.netfs + no virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.allocate_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.raw_format.non_acl.delta_allocate_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.allocate_capacity.netfs,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_allocate_capacity.fs_pool,virsh.vol_resize.positive_test.luks_encrypt.qcow2_format.non_acl.delta_allocate_capacity.netfs + + - vol_download_upload: + only virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.acl_test.0-1024,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.acl_test.1024-4096,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.download.acl_test.no_options,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.upload.non_acl.no_options,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.upload.acl_test.0-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.upload.acl_test.1024-end,virsh.vol_download_upload.download_upload.non_encrypt.netfs_pool.upload.acl_test.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.download.non_acl.0-1024,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.download.non_acl.1024-4096,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.download.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.download.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.download.non_acl.no_options,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.upload.non_acl.0-end,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.upload.non_acl.1024-end,virsh.vol_download_upload.download_upload.luks_encrypt.netfs_pool.upload.non_acl.no_options + + - vol_clone_wipe: + only virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.raw_f.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.vdmk_f.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.vdmk_f.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.vdmk_f.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.vol_format.vdmk_f.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.non_acl.sparse_file.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.raw_f.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.prealloc.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.prealloc.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.prealloc.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.prealloc.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.no_prealloc.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.no_prealloc.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.no_prealloc.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.qcow2_f.no_prealloc.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.vdmk_f.pool_type.dir.default,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.vdmk_f.pool_type.fs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.vdmk_f.pool_type.logical,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.vol_format.vdmk_f.pool_type.netfs,virsh.vol_clone_wipe.positive_test.non_encrypt.acl_test.sparse_file.pool_type.netfs,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.raw_f.pool_type.netfs,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.prealloc.pool_type.netfs,virsh.vol_clone_wipe.positive_test.luks_encrypt.non_acl.vol_format.qcow2_f.no_prealloc.pool_type.netfs + + - update_device_matrix: + updatedevice_target_bus = "scsi" + updatedevice_target_dev = "sdc" + only virsh.update_device_matrix.pre_vm_state_transient.dt_option_live.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live.at_option_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live.at_option_live_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_config.at_option_live.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_config.at_option_config.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_config.at_option_current.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_config.at_option_default.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_config.at_option_live_config.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_current.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_current.at_option_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_current.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_current.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_current.at_option_live_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_default.at_option_live.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_default.at_option_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_default.at_option_current.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_default.at_option_default.dt_okay_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_default.at_option_live_config.dt_okay_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live_config.at_option_live.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live_config.at_option_config.dt_error_at_error,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live_config.at_option_current.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live_config.at_option_default.dt_error_at_okay,virsh.update_device_matrix.pre_vm_state_transient.dt_option_live_config.at_option_live_config.dt_error_at_error + + - attach_device: + variants: + - non_block_virtio_file: + only virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.controller.type_scsi.with_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.controller.type_scsi.with_alias.error_test.cold_attach_id_ref.file_argument.domain_argument + + - block_virtio_file: + vadu_dev_obj_devidx_VirtualDiskBasic = 0 + only virsh.attach_device.block.single_file.without_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_ide_bus.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_ide_bus.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_ide_bus.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_ide_bus.file_argument.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_sata_bus.file_positional.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_sata_bus.file_positional.domain_argument,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_sata_bus.file_argument.domain_positional,virsh.attach_device.block.single_file.without_alias.error_test.unsupport_sata_bus.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_ide_bus.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_ide_bus.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_ide_bus.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_ide_bus.file_argument.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_sata_bus.file_positional.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_sata_bus.file_positional.domain_argument,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_sata_bus.file_argument.domain_positional,virsh.attach_device.block.single_file.with_alias.error_test.unsupport_sata_bus.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.without_alias.error_test.invalid_disk_type.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_virtio_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_virtio_file.with_alias.error_test.invalid_disk_type.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_usb_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_usb_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.without_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm.live_config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.hot_attach_hot_vm_current.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.persistent.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_cold_vm.config.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.name_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.id_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.normal_test.cold_attach_hot_vm.uuid_ref.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_file.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_file.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_file.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_file.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_name.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_name.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_name.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.no_name.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.block.single_scsi_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.block.single_scsi_file.with_alias.error_test.cold_attach_id_ref.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_file_string.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_file_string.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_file_string.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_file_string.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.missing_file.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.missing_file.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.missing_file.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.missing_file.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_file.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_file.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_file.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_file.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_name.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_name.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_name.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.no_name.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_name_string.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_name_string.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_name_string.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.empty_name_string.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hex_id_option.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hex_id_option.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hex_id_option.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hex_id_option.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_id_option.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_id_option.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_id_option.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_id_option.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.unexpect_option.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.unexpect_option.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.unexpect_option.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.unexpect_option.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_uuid_option.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_uuid_option.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_uuid_option.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.invalid_uuid_option.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_value.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_value.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_value.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_value.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_parameter.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_parameter.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_parameter.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.extra_parameter.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.help_parameter.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.help_parameter.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.help_parameter.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.help_parameter.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hot_attach_cold_vm.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hot_attach_cold_vm.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hot_attach_cold_vm.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.hot_attach_cold_vm.file_argument.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.cold_attach_id_ref.file_positional.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.cold_attach_id_ref.file_positional.domain_argument,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.cold_attach_id_ref.file_argument.domain_positional,virsh.attach_device.multiple.VirtualDiskBasic_SerialFile_SerialPipe.error_test.cold_attach_id_ref.file_argument.domain_argument + + - attach_detach_disk: + variants: + - virtio: + at_dt_disk_device_target = "vdc" + at_dt_disk_bus_type = "virtio" + only virsh.attach_detach_disk.attach_disk.error_test.no_vm_name,virsh.attach_detach_disk.attach_disk.error_test.hex_vm_id,virsh.attach_detach_disk.attach_disk.error_test.invalid_vm_id,virsh.attach_detach_disk.attach_disk.error_test.invalid_vm_uuid,virsh.attach_detach_disk.attach_disk.error_test.vm_shutdown,virsh.attach_detach_disk.attach_disk.error_test.invalid_option_1,virsh.attach_detach_disk.attach_disk.error_test.invalid_option_2,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.invalid_source,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.twice_diff_source,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.invalid_mode,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.non_exist_source,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.invalid_cache,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.hotplug_sata,virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.invalid_scsi_address,virsh.attach_detach_disk.detach_disk.error_test.no_vm_name,virsh.attach_detach_disk.detach_disk.error_test.hex_vm_id,virsh.attach_detach_disk.detach_disk.error_test.invalid_vm_id,virsh.attach_detach_disk.detach_disk.error_test.invalid_vm_uuid,virsh.attach_detach_disk.detach_disk.error_test.vm_shutdown,virsh.attach_detach_disk.detach_disk.error_test.invalid_option_1,virsh.attach_detach_disk.detach_disk.error_test.invalid_option_2,virsh.attach_detach_disk.detach_disk.error_test.only_detach_disk.no_attach,virsh.attach_detach_disk.detach_disk.error_test.only_detach_disk.no_target + no virsh.attach_detach_disk.attach_disk.error_test.only_attach_disk.invalid_driver + + - invalid_target: + only virsh.attach_detach_disk.attach_disk.error_test.invalid_target,virsh.attach_detach_disk.detach_disk.error_test.invalid_target + + - guest_remove: + only remove_guest.without_disk diff --git a/config/wrapper/env.conf b/config/wrapper/env.conf index 278a54f7..070f9e70 100644 --- a/config/wrapper/env.conf +++ b/config/wrapper/env.conf @@ -1,14 +1,27 @@ +[paths] +test_cfg_dir = 'config/tests/' +test_dir = 'tests' +data_dir = 'data' +results_dir = 'results' +pre_script_dir = 'config/prescript' +post_script_dir = 'config/postscript' + [framework] # Usage examples: # (avocado-framework, '') -- Installs latest released version # ('avocado-framework', 80.0) -- Installs specificed version, make sure you change other entries aswell # ('avocado-framework', 'git+https://github.com/avocado-framework/avocado.git') -- Install version from the given git repo +# ('avocado-framework', 'git+https://github.com/avocado-framework/avocado.git@branch') -- Install version from the given git repo and checkout to specific branch +# ('avocado-framework-plugin-varianter-yaml-to-mux', +# 'git+https://github.com/avocado-framework/avocado.git#subdirectory=optional_plugins/varianter_yaml_to_mux') -- Install from subdirectory from the given git repo base = [('avocado-framework', ''), ('avocado-framework-plugin-varianter-yaml-to-mux', '')] kvm = [('avocado-framework-plugin-vt', 'git+https://github.com/lop-devops/avocado-vt.git@KVMCI')] optional = [('avocado-framework-plugin-result-html', '')] [tests] # Usage Examples: +# name = [('git_path', 'branch'),...] +# ('https://github.com/avocado-framework-tests/avocado-misc-tests.git', '') -- Clones test repository and checkout to branch=master by default # ('https://github.com/avocado-framework-tests/avocado-misc-tests.git', '2.0') -- Clones tagged version 2.0 of test repository name = [('https://github.com/avocado-framework-tests/avocado-misc-tests.git', '')] @@ -85,7 +98,7 @@ packages = [deps_rhelbe7_pHyp] packages = [deps_fedora] -packages = gcc,python3-devel,xz-devel,python3-setuptools,numactl +packages = gcc,python3-devel,xz-devel,python3-setuptools,numactl,nfs-utils [deps_fedora_NV] packages = [deps_fedora_pHyp] @@ -140,6 +153,8 @@ packages = packages = [deps_sles15_kvm] packages = tcpdump,qemu +[deps_sles16] +packages = gcc,python311-devel,7zip,xz-devel,python311-setuptools,tcpdump,numactl [deps_slesbe] packages = gcc,python3-devel,xz-devel,python3-setuptools,tcpdump,numactl [deps_slesbe_NV] @@ -158,7 +173,7 @@ packages = packages = [pip-package] -package = configparser,enum +package = [('configparser',''), ('distlib','')] [script-dir] prescriptdir = /etc/avocado/scripts/job/pre.d/ diff --git a/lib/helper.py b/lib/helper.py index 33d197d0..109d58f3 100644 --- a/lib/helper.py +++ b/lib/helper.py @@ -21,6 +21,7 @@ import shutil import stat import platform +import importlib.metadata from .logger import logger_init @@ -122,7 +123,7 @@ def get_env_type(enable_kvm=False): if env_type == "NV" and enable_kvm: env_type = "kvm" if 'ubuntu' in dist: - cmd_pat = "dpkg -l|grep ' %s'" + cmd_pat = "apt list --installed | grep -i '%s'" else: cmd_pat = "rpm -q %s" return (env_ver, env_type, cmd_pat) @@ -207,7 +208,7 @@ def remove_file(src, dest): class PipMagager: - def __init__(self, base_fw=[], opt_fw=[], kvm_fw=[], enable_kvm=False): + def __init__(self, base_fw=[], opt_fw=[], kvm_fw=[],pip_packages=[], enable_kvm=False): """ helper class to parse, install, uninstall pip package from user config """ @@ -218,11 +219,16 @@ def __init__(self, base_fw=[], opt_fw=[], kvm_fw=[], enable_kvm=False): # Check for pip if not attempt install and proceed cmd = "%s --help >/dev/null 2>&1||(curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python%s ./get-pip.py)" % (self.pip_cmd, sys.version_info[0]) runcmd(cmd, err_str='Unable to install pip3') - self.uninstallitems = base_fw + opt_fw + kvm_fw + + # Get pip version + pip_version_split = importlib.metadata.version(f"pip").split(".") + self.pip_vmajor, self.pip_vminor = int(pip_version_split[0]), int(pip_version_split[1]) + + self.uninstallitems = base_fw + opt_fw + kvm_fw + pip_packages if enable_kvm: self.installitems = self.uninstallitems else: - self.installitems = base_fw + opt_fw + self.installitems = base_fw + opt_fw + pip_packages self.install_packages = [] self.uninstall_packages = [] @@ -243,15 +249,18 @@ def install(self): else: pip_installcmd = '%s install -U' % self.pip_cmd for package in self.install_packages: - cmd = '%s %s --break-system-packages' % (pip_installcmd, package) + cmd = '%s %s' % (pip_installcmd, package) + if (self.pip_vmajor > 23) or (self.pip_vmajor == 23 and self.pip_vminor >= 1): + cmd = cmd + ' --break-system-packages' # --break-system-packages introduced in pip 23.1 runcmd(cmd, err_str='Package installation via pip failed: package %s' % package, debug_str='Installing python package %s using pip' % package) def uninstall(self): for package in self.uninstall_packages: - cmd = "%s uninstall %s --break-system-packages -y \ - --disable-pip-version-check" % (self.pip_cmd, package) + cmd = '%s uninstall %s -y --disable-pip-version-check' % (self.pip_cmd, package) + if (self.pip_vmajor > 23) or (self.pip_vmajor == 23 and self.pip_vminor >= 1): + cmd = cmd + ' --break-system-packages' # --break-system-packages introduced in pip 23.1 runcmd(cmd, ignore_status=True, err_str="Error in removing package: %s" % package, debug_str="Uninstalling %s" % package)