Skip to content

Commit

Permalink
Add measure script (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpisciotta authored Mar 12, 2024
1 parent a2b51d3 commit 46a2c45
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,7 @@ lint:
.PHONY: coverage
export_coverage:
tools/export_coverage

.PHONY: measure
measure:
tools/measure
7 changes: 7 additions & 0 deletions tools/measure
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

set -euo pipefail

swift build
LARGE_LOG_PATH=`find Tests -name large_xcodebuild_log.txt`
time cat $LARGE_LOG_PATH | ./.build/debug/xcbeautify

0 comments on commit 46a2c45

Please sign in to comment.