blob: 64aaf3109bb3f15a304831ac66647012c1489c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env bash
# This shell script runs Homebrew's test suite.
#
# Note: "formula_test" is omitted; these aren't unit tests but sanity checks
# on the real formulae.
#
# Bulk of the tests
ruby unittest.rb $*
# Update tests (only seem to work for mxcl)
ruby test_updater.rb $*
# Patching tests
ruby test_patching.rb $*
# External dependency tests
ruby test_external_deps.rb $*
|