diff options
| author | Tanish Desai <tanishdesai37@gmail.com> | 2025-09-29 17:49:37 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2025-10-01 11:22:07 -0400 |
| commit | 7dbee1274266b802456c7f07dc10184af2dc1ec0 (patch) | |
| tree | 093ca4ab867a62b6a9f6a3e0f526b260bb7aa05e /tests/tracetool/tracetool-test.py | |
| parent | c4e8d44bac5cecebba9bb7293b4256bd57e9f52e (diff) | |
| download | focaccia-qemu-7dbee1274266b802456c7f07dc10184af2dc1ec0.tar.gz focaccia-qemu-7dbee1274266b802456c7f07dc10184af2dc1ec0.zip | |
tracetool/ftrace: add Rust support
Signed-off-by: Tanish Desai <tanishdesai37@gmail.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-ID: <20250929154938.594389-16-pbonzini@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests/tracetool/tracetool-test.py')
| -rwxr-xr-x | tests/tracetool/tracetool-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tracetool/tracetool-test.py b/tests/tracetool/tracetool-test.py index f58f3b795e..3341fb18f9 100755 --- a/tests/tracetool/tracetool-test.py +++ b/tests/tracetool/tracetool-test.py @@ -14,7 +14,7 @@ def get_formats(backend): "c", "h", ] - if backend in {"log", "simple"}: + if backend in {"ftrace", "log", "simple"}: formats += ["rs"] if backend == "dtrace": formats += [ |