summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-02 17:37:19 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-02 17:37:19 -0500
commit5d4fc096459614c1b4f18f36a932f2cb51220aaf (patch)
tree54d2895cd3080982ddfb927ee9174b8de110746f /benchmark
parent37bfcdbd30a0e16894ccb16808cd21858b22193e (diff)
add benchmark
Diffstat (limited to 'benchmark')
-rwxr-xr-xbenchmark7
1 files changed, 7 insertions, 0 deletions
diff --git a/benchmark b/benchmark
new file mode 100755
index 0000000..b06c621
--- /dev/null
+++ b/benchmark
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+rm -rf out
+thing='start up'
+{ make -j1; echo done;}|ts -i '%.s'|sed 's/ .* / /' |while read -r time newthing; do
+ echo $time $thing
+ thing=$newthing
+done | sort -n