mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-14 21:36:13 +01:00
8 lines
222 B
Bash
8 lines
222 B
Bash
|
#!/bin/sh
|
||
|
DIR=`dirname $0`;
|
||
|
(cd $DIR; make performance)
|
||
|
ID=`git rev-list --max-count=1 HEAD`
|
||
|
echo "Testing revision ${ID}"
|
||
|
$DIR/performance | tee "perf-${ID}-normal.log"
|
||
|
$DIR/performance -t | tee "perf-${ID}-threaded.log"
|