29 lines
693 B
Plaintext
Raw Normal View History

#!/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 $*
2010-03-16 22:33:13 -07:00
ruby test_formula.rb $*
2010-02-27 16:03:04 -08:00
ruby test_versions.rb $*
2010-03-16 12:08:34 -07:00
ruby test_checksums.rb $*
2010-03-16 11:47:10 -07:00
ruby test_inreplace.rb $*
ruby test_hardware.rb $*
2010-02-18 11:40:59 -08:00
ruby test_formula_install.rb $*
2010-02-10 22:21:24 -08:00
ruby test_patching.rb $*
ruby test_external_deps.rb $*
2010-03-03 12:35:24 -08:00
ruby test_pathname_install.rb $*
2010-03-08 22:10:12 -08:00
ruby test_utils.rb $*
2010-03-08 22:27:08 -08:00
ruby test_ARGV.rb $*
# Update tests (only seem to work for mxcl)
ruby test_updater.rb $*