aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/tests
blob: b292bb57064e3fd2d17ca8db03c0202844baf73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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.
#
# Run as:
#  ./tests -- --skip-update
# to omit the update tests which only seem to work for mxcl
#

# 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 $*

# Update tests (only seem to work for mxcl)
ruby test_updater.rb $*