diff options
author | Nicolai Haehnle <nhaehnle@gmail.com> | 2009-08-27 23:02:53 +0200 |
---|---|---|
committer | Nicolai Haehnle <nhaehnle@gmail.com> | 2009-08-27 23:02:53 +0200 |
commit | 811b78c7273deadc86f7c1e8cc7b94741cd574cc (patch) | |
tree | 043c506dccfe0fab8c791f549d90babf622dc15e /dxo-piglit-run-r300 | |
parent | 7b1139101b7595bcba2fc3d1b5dc9bb077c5bc7e (diff) |
Piglit runner(s)
Diffstat (limited to 'dxo-piglit-run-r300')
-rwxr-xr-x | dxo-piglit-run-r300 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dxo-piglit-run-r300 b/dxo-piglit-run-r300 new file mode 100755 index 0000000..22f012b --- /dev/null +++ b/dxo-piglit-run-r300 @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Execute a full run of Piglit, then submit the summary to morningstar +# +# TODO: Automatically determine class +# + +piglit=${DXO_PATH}/piglit/repo +resultsdir=${DXO_PATH}/piglit/results +remotedatabase=morningstar:~/web/fdo/piglit-results +class=R300 +testprofile=${piglit}/tests/r300-limit.tests +testname=R300ND-`date +%Y-%m-%d-%H-%M` + +${piglit}/piglit-run.py -n ${testname} ${testprofile} ${resultsdir} + +echo +echo "Finished the Piglit run; hit enter when ready to upload test summary." +read +echo "Copying summary to deadlights" +scp ${resultsdir}/summary ${remotedatabase}/incoming/${class}/${testname} + |