diff options
| author | Tanish Desai <tanishdesai37@gmail.com> | 2025-09-29 17:49:38 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2025-10-01 11:22:07 -0400 |
| commit | 1461752f0fa4bcd7e60d51fe47e3430f8a81cdd8 (patch) | |
| tree | a85fab18d5442b196d1bd7796e1f83f88438b3d7 /tests/tracetool/tracetool-test.py | |
| parent | 7dbee1274266b802456c7f07dc10184af2dc1ec0 (diff) | |
| download | focaccia-qemu-1461752f0fa4bcd7e60d51fe47e3430f8a81cdd8.tar.gz focaccia-qemu-1461752f0fa4bcd7e60d51fe47e3430f8a81cdd8.zip | |
tracetool/syslog: add Rust support
The syslog backend needs the syslog function from libc and the LOG_INFO enum value; they are re-exported as "::trace::syslog" and "::trace::LOG_INFO" so that device crates do not all have to add the libc dependency, but otherwise there is nothing special. 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-17-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 3341fb18f9..786083ad7f 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 {"ftrace", "log", "simple"}: + if backend in {"ftrace", "log", "simple", "syslog"}: formats += ["rs"] if backend == "dtrace": formats += [ |