summaryrefslogtreecommitdiffstats
path: root/phoronix-test-suite
blob: c6dc2fb4452e2320a21f018965acf4cf2b9605dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/sh

# Phoronix Test Suite
# Copyright (C) 2008, Phoronix Media.
# http://www.phoronix.com/
# http://www.phoronix-test-suite.com/
# The Phoronix Test Suite is licensed under the GNU GPLv3. For more information see COPYING

if [ ! -x /usr/bin/php ] && [ ! -x /usr/local/bin/php ]
then
	echo "\n\nPHP5 CLI Must Be Installed To Run The Phoronix Test Suite!"
	echo "Only PHP For The Command Line Is Needed, Not A Full-Blown PHP w/ Web Server"
	echo "If you are using Ubuntu you must run: sudo apt-get install php5-cli"
	echo "If you are using Fedora you must run: yum install php-cli"
	echo "For support visit: http://www.phoronix.com/forums/forumdisplay.php?f=49\n\n"
fi

task=$1

case "${task}" in
"gui")
	php pts-core/pts-main.php
	;;
"install")
	php pts-core/pts-run-cmd.php INSTALL_BENCHMARK $2
	;;
"install-dependencies")
	php pts-core/pts-run-cmd.php INSTALL_EXTERNAL_DEPENDENCIES $2
	;;
"run")
	php pts-core/pts-run-benchmark.php $2
	;;
"batch-run")
	php pts-core/pts-run-benchmark.php $2 BATCH
	;;
"benchmark")
	php pts-core/pts-run-cmd.php INSTALL_BENCHMARK $2
	php pts-core/pts-run-benchmark.php $2
	;;
"batch-benchmark")
	php pts-core/pts-run-cmd.php INSTALL_BENCHMARK $2
	php pts-core/pts-run-benchmark.php $2 BATCH
	;;
"merge-results")
	php pts-core/pts-merge-results.php $2 $3 $4
	;;
"remove-result")
	php pts-core/pts-run-cmd.php REMOVE_RESULT $2
	;;
"upload")
	php pts-core/pts-run-cmd.php UPLOAD_RESULT $2
	;;
"list-tests")
	php pts-core/pts-run-cmd.php LIST_TESTS
	;;
"list-suites")
	php pts-core/pts-run-cmd.php LIST_SUITES
	;;
"list-saved-results")
	php pts-core/pts-run-cmd.php LIST_SAVED_RESULTS
	;;
"remote-comparison")
	php pts-core/pts-run-cmd.php REMOTE_COMPARISON $2 $3
	;;
"initial-config")
	php pts-core/pts-run-cmd.php INITIAL_CONFIG
	;;
*)
	echo "\n================================="
	echo "Phoronix Test Suite"
	echo "http://www.phoronix-test-suite.com/"
	echo "=================================\n"
#	echo "gui: Launch The Phoronix Test Suite GUI"
	echo "install <suite OR benchmark>: Install or Update The Specified Benchmark(s)"
	echo "install-dependencies <suite OR benchmark>: Install The External (Distribution) Dependencies For Specified Benchmark(s)"
	echo "run <suite OR benchmark>: Run The Specified Benchmark/Suite"
	echo "batch-run <suite OR benchmark>: Run The Specified Benchmark/Suite in Batch Mode"
	echo "benchmark <suite OR benchmark OR saved file>: Same as manually running install and then run"
	echo "batch-benchmark <suite OR benchmark OR saved file>: Same as manually running install and then run in Batch Mode"
	echo "merge-results <Saved File 1 OR Global ID> <Saved File 2 OR Global ID> <Save To>: Merge two saved result sets"
	echo "remove-result <Saved File>: Remove this saved result file and associated files"
	echo "list-tests: List all Phoronix Test Suite Benchmark profiles"
	echo "list-suites: List all Phoronix Test Suites"
	echo "list-saved-results: List all saved results"
	echo "upload <Saved File>: Upload these results to be shared globally"
	echo "build-php: Build A Local Copy Of PHP For The Phoronix Test Suite"
	echo "\n"
	;;
esac