diff options
author | Alex Bennée | 2021-11-29 15:09:27 +0100 |
---|---|---|
committer | Alex Bennée | 2021-11-29 16:12:56 +0100 |
commit | a7c6e562e6f3f4e009c5dfa4e44cbbe908c4bf05 (patch) | |
tree | b3aac343f21231b5605e3f4a63e2cef9ea1e5138 /tests/avocado | |
parent | accel/tcg: suppress IRQ check for special TBs (diff) | |
download | qemu-a7c6e562e6f3f4e009c5dfa4e44cbbe908c4bf05.tar.gz qemu-a7c6e562e6f3f4e009c5dfa4e44cbbe908c4bf05.tar.xz qemu-a7c6e562e6f3f4e009c5dfa4e44cbbe908c4bf05.zip |
tests/avocado: fix tcg_plugin mem access count test
When we cleaned up argument handling the test was missed.
Fixes: 5ae589faad ("tests/plugins/mem: introduce "track" arg and make args not positional")
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20211129140932.4115115-4-alex.bennee@linaro.org>
Diffstat (limited to 'tests/avocado')
-rw-r--r-- | tests/avocado/tcg_plugins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/tcg_plugins.py b/tests/avocado/tcg_plugins.py index 9ca1515c3b..642d2e49e3 100644 --- a/tests/avocado/tcg_plugins.py +++ b/tests/avocado/tcg_plugins.py @@ -131,7 +131,7 @@ class PluginKernelNormal(PluginKernelBase): suffix=".log") self.run_vm(kernel_path, kernel_command_line, - "tests/plugin/libmem.so,arg=both", plugin_log.name, + "tests/plugin/libmem.so,inline=true,callback=true", plugin_log.name, console_pattern, args=('-icount', 'shift=1')) |