Skip to content

CTest: fix Time formatting in Notes.xml

Zack Galbreath requested to merge zackgalbreath/cmake:notes_timestamp into master

Notes.xml was reporting its timestamp in E-notation. Here's an example of what this looked like:

  <Time>1.50938e+09</Time>

This format is unsuitable for precisely determining when the Notes file was generated. As a result of this commit, the same field now appears as:

  <Time>1509383044</Time>

Merge request reports