2010-04-06 08:27:11 -07:00

32 lines
574 B
Bash
Executable File

#!/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 $*
ruby test_versions.rb $*
ruby test_checksums.rb $*
ruby test_inreplace.rb $*
# Test hardware sniffers
ruby test_hardware.rb $*
# Test formula installs
ruby test_formula_install.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 $*