diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2018-04-19 15:20:48 -0400 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-05-15 05:43:07 -0700 |
commit | ae0ba373b8dea2350a8845a15a47f837b9152d2c (patch) | |
tree | 13178fac9233624c47532168d029d48b05ff1ba6 /templates/reports | |
parent | d7581697a53f7b7f4bb7abadc37abf0dfa924ea1 (diff) | |
download | spack-ae0ba373b8dea2350a8845a15a47f837b9152d2c.tar.gz spack-ae0ba373b8dea2350a8845a15a47f837b9152d2c.tar.bz2 spack-ae0ba373b8dea2350a8845a15a47f837b9152d2c.tar.xz spack-ae0ba373b8dea2350a8845a15a47f837b9152d2c.zip |
CDash report for concretization errors
Capture any concretization errors and record them in a CTest Update.xml file.
Diffstat (limited to 'templates/reports')
-rw-r--r-- | templates/reports/cdash/Update.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/reports/cdash/Update.xml b/templates/reports/cdash/Update.xml new file mode 100644 index 0000000000..39f3d6a337 --- /dev/null +++ b/templates/reports/cdash/Update.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Update> + <Site>{{ hostname }}</Site> + <BuildName>{{ install_command }}</BuildName> + <BuildStamp>{{ buildstamp }}</BuildStamp> + <StartTime>{{ starttime }}</StartTime> + <EndTime>{{ endtime }}</EndTime> +{% if msg %} + <UpdateReturnStatus>{{ msg }}</UpdateReturnStatus> +{% endif %} +</Update> |