Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion osht.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ function _osht_timestamp {
function _osht_init_junit {
cat <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<testsuites failures="$(_osht_failed)" name="$0" tests="$_OSHT_PLANNED_TESTS" time="$SECONDS" timestamp="$(_osht_timestamp)" >
<testsuites>
<testsuite failures="$(_osht_failed)" name="$0" tests="$_OSHT_PLANNED_TESTS" time="$SECONDS" timestamp="$(_osht_timestamp)" >
EOF
}

Expand All @@ -147,6 +148,7 @@ EOF

function _osht_end_junit {
cat <<EOF
</testsuite>
</testsuites>
EOF
}
Expand Down