mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-10 10:47:51 +08:00
9 lines
207 B
Bash
Executable File
9 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cat > test-results/sharness.xml <<-EOF
|
|
<?xml version="1.1" encoding="UTF-8"?>
|
|
<testsuites name="sharness">
|
|
$(find test-results -name '*.xml.part' | sort | xargs cat)
|
|
</testsuites>
|
|
EOF
|