1Usage:
2run [options] <test definition> [test definition] ...
3Options
4	-D<property>=<value>	Set system property.
5	-propertyfile <file>	Set system property from property file.
6	-r	Set a runnable which will be executed before all tests start.
7	-l	Set a test listeners.
8	-help	Print usage.
9Test Definition
10	-tp	[suite name:]<package name>[,package_name]...	Define a test suite with test packages separated by comma.
11	-tc	[suite name:]<class name>[,class_name]...	Define a test suite with test classes separated by comma.
12	-tm	[suite name:]<method name>[,method_name]...	Define a test suite with test methods separated by comma.
13System Property
14	openoffice.home	Specify the directory in which OpenOffice is installed.
15	openoffice.pack	Specify a URL to OpenOffice installation package. The package will be automatically installed.
16	singleton	True to allow only one test process to run at a time.
17	only.new	True to allow test to run only when openoffice.pack is newer than the local cached package.
18	report.to	Specify a URL to upload test result.
19Example
20	run -Dopenoffice.home=/Applications/OpenOffice.org.app/Contents -tp bvt
21	run -Dopenoffice.home=/Applications/OpenOffice.org.app/Contents -tc bvt:bvt.gui.BasicFunctionTest,bvt.gui.FileTypeTest
22	run -Dopenoffice.pack=http://ci.apache.org/projects/openoffice/install/linux64/Apache_OpenOffice_4.0.0_Linux_x86-64_install-arc_en-US.tar.gz -tp bvt
23