All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH lttng-ust 1/2] Fix: lttng-gen-tp: only replace file extension
@ 2017-09-19 16:08 Jonathan Rajotte
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Rajotte @ 2017-09-19 16:08 UTC (permalink / raw)
  To: lttng-dev

Previous replace was done on the complete path. A path containing
.c or .o would result in a corrupted file path.

Reported-by: Gunnar Strand <Gunnar.Strand@ericsson.com>
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
---
 tools/lttng-gen-tp | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/tools/lttng-gen-tp b/tools/lttng-gen-tp
index b62cd990..6aa1bba1 100755
--- a/tools/lttng-gen-tp
+++ b/tools/lttng-gen-tp
@@ -79,7 +79,9 @@ class CFile:
     def write(self):
         outputFile = open(self.outputFilename,"w")
 
-        headerFilename = self.outputFilename.replace(".c",".h")
+        headerFilename = self.outputFilename
+        if headerFilename.endswith(".c"):
+            headerFilename = headerFilename[:-2] + ".h"
 
         outputFile.write(CFile.FILE_TPL.format(
                                            headerFilename = headerFilename))
@@ -126,7 +128,10 @@ class ObjFile:
         return cc
 
     def write(self):
-        cFilename = self.outputFilename.replace(".o",".c")
+        cFilename = self.outputFilename
+        if cFilename.endswith(".o"):
+            cFilename = cFilename[:-2] + ".c"
+
         cc = self._detectCC()
         if cc == "":
             raise RuntimeError("No C Compiler detected")
-- 
2.11.0

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH lttng-ust 1/2] Fix: lttng-gen-tp: only replace file extension
       [not found] <20170919160834.23713-1-jonathan.rajotte-julien@efficios.com>
@ 2017-09-19 17:07 ` Mathieu Desnoyers
  0 siblings, 0 replies; 2+ messages in thread
From: Mathieu Desnoyers @ 2017-09-19 17:07 UTC (permalink / raw)
  To: Jonathan Rajotte; +Cc: lttng-dev

Merged into master, 2.10, 2.9, thanks!

Mathieu

----- On Sep 19, 2017, at 12:08 PM, Jonathan Rajotte jonathan.rajotte-julien@efficios.com wrote:

> Previous replace was done on the complete path. A path containing
> .c or .o would result in a corrupted file path.
> 
> Reported-by: Gunnar Strand <Gunnar.Strand@ericsson.com>
> Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
> ---
> tools/lttng-gen-tp | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/lttng-gen-tp b/tools/lttng-gen-tp
> index b62cd990..6aa1bba1 100755
> --- a/tools/lttng-gen-tp
> +++ b/tools/lttng-gen-tp
> @@ -79,7 +79,9 @@ class CFile:
>     def write(self):
>         outputFile = open(self.outputFilename,"w")
> 
> -        headerFilename = self.outputFilename.replace(".c",".h")
> +        headerFilename = self.outputFilename
> +        if headerFilename.endswith(".c"):
> +            headerFilename = headerFilename[:-2] + ".h"
> 
>         outputFile.write(CFile.FILE_TPL.format(
>                                            headerFilename = headerFilename))
> @@ -126,7 +128,10 @@ class ObjFile:
>         return cc
> 
>     def write(self):
> -        cFilename = self.outputFilename.replace(".o",".c")
> +        cFilename = self.outputFilename
> +        if cFilename.endswith(".o"):
> +            cFilename = cFilename[:-2] + ".c"
> +
>         cc = self._detectCC()
>         if cc == "":
>             raise RuntimeError("No C Compiler detected")
> --
> 2.11.0

-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com
_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-09-19 17:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-19 16:08 [PATCH lttng-ust 1/2] Fix: lttng-gen-tp: only replace file extension Jonathan Rajotte
     [not found] <20170919160834.23713-1-jonathan.rajotte-julien@efficios.com>
2017-09-19 17:07 ` Mathieu Desnoyers

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.