mirror of
https://github.com/apple/foundationdb.git
synced 2025-05-14 18:02:31 +08:00
5 lines
150 B
Bash
Executable File
5 lines
150 B
Bash
Executable File
#!/bin/bash -u
|
|
for file in `find . -name 'trace*.xml'` ; do
|
|
mono ./bin/TestHarness.exe summarize "${file}" summary.xml "" JoshuaTimeout true
|
|
done
|