aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/manpages/brew.1.md
diff options
context:
space:
mode:
authorJack Nagel2014-09-18 14:16:07 -0500
committerJack Nagel2014-09-18 14:16:07 -0500
commit36d53fcbb7abec1eb3ab903fbbb4a7c54d12cf1e (patch)
tree7638a90744f7d1c2ebe47b45828f1af8dc12c7f0 /Library/Contributions/manpages/brew.1.md
parent350a85d9f588e94257399a830c8ae51f704c434f (diff)
downloadhomebrew-36d53fcbb7abec1eb3ab903fbbb4a7c54d12cf1e.tar.bz2
Implement `brew test --debug`
Diffstat (limited to 'Library/Contributions/manpages/brew.1.md')
-rw-r--r--Library/Contributions/manpages/brew.1.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Contributions/manpages/brew.1.md b/Library/Contributions/manpages/brew.1.md
index 38b864409..533fbfa01 100644
--- a/Library/Contributions/manpages/brew.1.md
+++ b/Library/Contributions/manpages/brew.1.md
@@ -179,8 +179,7 @@ Note that these flags should only appear after a command.
several different ways. See [SPECIFYING FORMULAE][].
If `--debug` is passed and brewing fails, open an interactive debugging
- session with access to IRB, ruby-debug, or a shell inside the temporary
- build directory.
+ session with access to IRB or a shell inside the temporary build directory.
If `--env=std` is passed, use the standard build environment instead of superenv.
@@ -332,14 +331,17 @@ Note that these flags should only appear after a command.
Ensures all tapped formula are symlinked into Library/Formula and prunes dead
formula from Library/Formula.
- * `test` [--devel|--HEAD] <formula>:
+ * `test` [--devel|--HEAD] [--debug] <formula>:
A few formulae provide a test method. `brew test <formula>` runs this
test method. There is no standard output or return code, but it should
generally indicate to the user if something is wrong with the installed
formula.
- To test the development or head version of a formula, `--devel` or
- `--HEAD` must be passed.,
+ To test the development or head version of a formula, use `--devel` or
+ `--HEAD`.
+
+ If `--debug` is passed and the test fails, an interactive debugger will be
+ launched with access to IRB or a shell inside the temporary test directory.
Example: `brew install jruby && brew test jruby`