30 lines
547 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.
#
# Bulk of the tests
ruby unittest.rb $*
2010-02-10 22:21:24 -08:00
2010-02-27 16:03:04 -08:00
ruby test_versions.rb $*
2010-03-16 11:47:10 -07:00
ruby test_inreplace.rb $*
# Test hardware sniffers
ruby test_hardware.rb $*
2010-02-18 11:40:59 -08:00
# Test formula installs
ruby test_formula_install.rb $*
2010-02-12 14:56:01 -08:00
# Update tests (only seem to work for mxcl)
ruby test_updater.rb $*
2010-02-10 22:21:24 -08:00
# Patching tests
ruby test_patching.rb $*
# External dependency tests
ruby test_external_deps.rb $*