18 lines
543 B
Bash
Executable File
18 lines
543 B
Bash
Executable File
#!/bin/bash
|
|
# This shell script runs Homebrew's test suite.
|
|
|
|
/usr/bin/ruby test_bucket.rb $*
|
|
/usr/bin/ruby test_formula.rb $*
|
|
/usr/bin/ruby test_versions.rb $*
|
|
/usr/bin/ruby test_checksums.rb $*
|
|
/usr/bin/ruby test_inreplace.rb $*
|
|
/usr/bin/ruby test_hardware.rb $*
|
|
/usr/bin/ruby test_formula_install.rb $*
|
|
/usr/bin/ruby test_patching.rb $*
|
|
/usr/bin/ruby test_external_deps.rb $*
|
|
/usr/bin/ruby test_pathname_install.rb $*
|
|
/usr/bin/ruby test_utils.rb $*
|
|
/usr/bin/ruby test_ARGV.rb $*
|
|
/usr/bin/ruby test_ENV.rb $*
|
|
/usr/bin/ruby test_updater.rb $*
|