Commit ff8a89c4 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

BUG: trace to see how is written the build name

No related merge requests found
Showing with 4 additions and 0 deletions
+4 -0
...@@ -59,6 +59,10 @@ class Handler: ...@@ -59,6 +59,10 @@ class Handler:
if os.path.exists( configure_xml ): if os.path.exists( configure_xml ):
if trace: if trace:
print ( configure_xml ) print ( configure_xml )
configure_file = open( configure_xml, "r" )
content = configure_file.read()
configure_file.close()
print( content )
self.configure_path = configure_xml self.configure_path = configure_xml
return True return True
print("Could not find the Configure.xml produced by ctest") print("Could not find the Configure.xml produced by ctest")
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment