Boost logo

Boost :

From: Jeff Garland (jeff_at_[hidden])
Date: 2002-07-12 14:03:25


I recommend using ISO 8601 formats for timestamps instead of an adhoc format. So instead of:

timestamp="7 June 2002 14:52:03 UTM"

Try:

timestamp="2002-06-07 14:52:03 UTM"

Besides being a standard and 'internationalized' it is much easier to parse, compare etc. Also, I assume by UTM you mean UTC
(Universal Time Coordinated)?

Also don't you want the results as sub-elements of the toolset? Like this:

<toolset>Metrowerks
  <test-directory-path>...</test-directory-path>
- <compile-action source-path="../libs/config/config_info.cpp" result="success" timestamp="7 June 2002 14:52:03 UTM">
  <command>mwcc blah blah blah ../libs/config/config_info.cpp</command>
- <output>
- <!-- present even if no output text
  -->
- <!-- including warning messages, even if compile succeeds
  -->
  </output>
  </compile-action>
</toolset>

Jeff


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk