summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <wjt@freedesktop.org>2013-06-24 23:57:55 -0700
committerWill Thompson <wjt@freedesktop.org>2013-06-24 23:57:55 -0700
commit5585911275e1688e68cf97729cc8f0a287a63e7f (patch)
tree7de6b502b683eb99d8464c949d3746d009089028
parenta4fcd3600e894081147f380112e160c0fff4ec21 (diff)
Manually import 'tt' page.
-rw-r--r--tt.mdwn31
1 files changed, 31 insertions, 0 deletions
diff --git a/tt.mdwn b/tt.mdwn
new file mode 100644
index 0000000..092d826
--- /dev/null
+++ b/tt.mdwn
@@ -0,0 +1,31 @@
+tt is a command-line utility which drives `make check` on your behalf. It makes running CM and Mission Control tests much easier, and is ideal if you're lazy. To quote the `--help` output:
+
+{{{
+Examples:
+ # Run all tests, as a shorthand for `make check`:
+ tt
+ # Run a single test:
+ tt muc/banned.py
+ tt muc/banned
+ # Run all tests in a directory:
+ tt muc/
+ # Run a bunch of tests:
+ tt muc/ text/
+}}}
+
+== Get a binary ==
+
+Here's [[http://people.freedesktop.org/~wjt/tt/tt-1.1.amd64.bz2|tt 1.1 for amd64]], or [[http://people.freedesktop.org/~wjt/tt/tt-1.0.x86.bz2|tt 1.0 for x86]].
+
+== Build from source ==
+
+The source lives on [[http://cgit.freedesktop.org/~wjt/tt|cgit.freedesktop.org]]. Grab it and build it as follows:
+
+{{{
+git clone git://people.freedesktop.org/~wjt/tt
+cd tt
+cabal install --prefix=$HOME
+~/bin/tt --help
+}}}
+
+See also, the [[http://cgit.freedesktop.org/~wjt/tt/plain/README|README]].