blob: 21cc9f17ed8457d1bfeb87b441750ab631883a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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.
#
# Feel free to split out test_bucket
ruby test_bucket.rb $*
ruby test_formula.rb $*
ruby test_versions.rb $*
ruby test_checksums.rb $*
ruby test_inreplace.rb $*
ruby test_hardware.rb $*
ruby test_formula_install.rb $*
ruby test_patching.rb $*
ruby test_external_deps.rb $*
ruby test_pathname_install.rb $*
ruby test_utils.rb $*
ruby test_ARGV.rb $*
ruby test_ENV.rb $*
ruby test_updater.rb $*
|