Skip to content
Merged
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
8 changes: 4 additions & 4 deletions build-scripts/create-empty-test
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# test report saying that there were no tests to report.

for repo in core nova; do
cat << EOF > "$BASEDIR"/"$repo"/tests/unit/no_tests.xml
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<testsuite name=\"no_tests_to_report\">
<testcase name=\"no_tests\" />
cat << EOF > "$BASEDIR/$repo/tests/unit/no_tests.xml"
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="no_tests_to_report">
<testcase name="no_tests" />
</testsuite>
EOF
done
Loading