]> git.proxmox.com Git - mirror_qemu.git/commitdiff
trace: enforce that every trace-events file has a final newline
authorDaniel P. Berrangé <berrange@redhat.com>
Wed, 23 Jan 2019 12:00:14 +0000 (12:00 +0000)
committerStefan Hajnoczi <stefanha@redhat.com>
Thu, 24 Jan 2019 14:16:56 +0000 (14:16 +0000)
When generating the trace-events-all file, the build system simply
concatenates all the individual trace-events files. If any one of those
files does not have a final newline, the printf format string will have
the contents of the first line of the next file appended to it, which is
usually a '#' comment.

Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-id: 20190123120016.4538-3-berrange@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
hw/gpio/trace-events
scripts/tracetool/__init__.py

index cb41a89756983e0aede7a0618049e74f917a2152..5d4dd200c2ac7a339e6cd53e39b778a68297fd1c 100644 (file)
@@ -4,4 +4,4 @@
 nrf51_gpio_read(uint64_t offset, uint64_t r) "offset 0x%" PRIx64 " value 0x%" PRIx64
 nrf51_gpio_write(uint64_t offset, uint64_t value) "offset 0x%" PRIx64 " value 0x%" PRIx64
 nrf51_gpio_set(int64_t line, int64_t value) "line %" PRIi64 " value %" PRIi64
-nrf51_gpio_update_output_irq(int64_t line, int64_t value) "line %" PRIi64 " value %" PRIi64
\ No newline at end of file
+nrf51_gpio_update_output_irq(int64_t line, int64_t value) "line %" PRIi64 " value %" PRIi64
index 0e3c9e146cc72e290ac80bd850762a881c8da781..3478ac93ab5b99f68f9e863145ef090c0f8b2c07 100644 (file)
@@ -350,6 +350,8 @@ def read_events(fobj, fname):
 
     events = []
     for lineno, line in enumerate(fobj, 1):
+        if line[-1] != '\n':
+            raise ValueError("%s does not end with a new line" % fname)
         if not line.strip():
             continue
         if line.lstrip().startswith('#'):