Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

qmtest(1) [debian man page]

QMTEST(1)						      General Commands Manual							 QMTEST(1)

NAME
qmtest - access QMTest's functionality from the command line. SYNOPSIS
qmtest [ option ... ] command [ command-option ... ] [ argument ... ] DESCRIPTION
qmtest QMTest is an general-purpose, cross-platform software testing tool. QMTest can be used to test compilers, databases, graphical user interfaces, or embedded systems. QMTest provides a convenient graphical user interface for creating, managing, and executing tests, pro- vides support for parallel test execution, and can be extended in a variety of ways. This tool offers access to the tool's functionality from the command line. OPTIONS
-h, --help Display usage summary. --version Display version information. -D, --tdb PATH Path to the test database. COMMANDS
create-target Create (or update) a target specification. create-tdb Create a new test database. gui Start the QMTest GUI. extensions List extension classes. help Display usage summary. register Register an extension class. remote Run QMTest as a remote server. run Run one or more tests. summarize Summarize results from a test run. Invoke "qmtest COMMAND --help" for information about command-options and arguments. BUGS
This manual page may be out of date, it should be generated from the XML manual. SEE ALSO
The complete qmtest documentation is provided in HTML and PDF formats in /usr/share/doc/qm/test. QMTEST(1)

Check Out this Related Man Page

GO-TEST(1)						      General Commands Manual							GO-TEST(1)

NAME
go - tool for managing Go source code SYNOPSIS
go test [-c] [-i] [ build flags ] [ packages ] [ flags for test binary ] DESCRIPTION
"Go test" automates testing the packages named by the import paths. It prints a summary of the test results in the format: ok archive/tar 0.011s FAIL archive/zip 0.022s ok compress/gzip 0.033s ... followed by detailed output for each failed package. "Go test" recompiles each package along with any files with names matching the file pattern "*_test.go". These additional files can con- tain test functions, benchmark functions, and example functions. See go-testfunc(7) for more. By default, go test needs no arguments. It compiles and tests the package with source in the current directory, including tests, and runs the tests. The package is built in a temporary directory so it does not interfere with the non-test installation. OPTIONS
In addition to the build flags, the flags handled by 'go test' itself are: -c Compile the test binary to pkg.test but do not run it. -i Install packages that are dependencies of the test. Do not run the test. The test binary also accepts flags that control execution of the test; these flags are also accessible by 'go test'. See go-testflag(7) for details. For more about build flags, see go-build(1). For more about specifying packages, see go-packages(7). SEE ALSO
go-build(1), go-vet(1). AUTHOR
This manual page was written by Michael Stapelberg <stapelberg@debian.org>, for the Debian project (and may be used by others). 2012-05-13 GO-TEST(1)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

tr command

i am getting following error while executing tr command tr -s "@@@" "|" testtr tr: too many arguments is there is ant other way for above functionality (1 Reply)
Discussion started by: mahabunta
1 Replies

2. Red Hat

Multiple Users

I need to have more than one user logged into my PC's VMWare Linux virtual simultaneously, each seeing a graphical display, to test my software's ability to affect their displays one by one. I have never done anything like this before. My Linux virtuals have been for my development only, that is... (3 Replies)
Discussion started by: BrandonShw
3 Replies

3. Programming

Program to test SSD

Hi, I want to use SSD as storage to replace hard disk in server(Linux system). Need some help how to code the pgm(C or C ++)to test the SSD functionality (eg: Badblocks ). As im new to this line. i dont have much experience. Any input from experts/pro much appreciated. thanks a lot. :confused: (4 Replies)
Discussion started by: crazydude80
4 Replies

4. Red Hat

how to create hidden account in centos

hi everybody, iam using 32bit centos 6.2 on my machine, and i want to create hidden user 'test' , i mean to say while iam starting my centos at GUI mode, at that time that username 'test' should not appear at list of users, only i can use that username is command line. logging in through... (1 Reply)
Discussion started by: paruhang
1 Replies

5. AIX

Need a graphical interface on AIX server to create database

Hello, Please suggest me the ways how to get graphical interface on AIX server.I need to create oracle database for which I need graphical access. Best regards, Vishal (4 Replies)
Discussion started by: Vishal_dba
4 Replies

6. Shell Programming and Scripting

Run remote command and send email

I am currently try to write a simple script with the following condition, but so far not having luck as the exit code would always be 0. Run remote command to read a file and grep for test word. if test word is in the file, send email. if not, do nothing also possible to ssh to multiple... (3 Replies)
Discussion started by: jaapar
3 Replies