aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/tests
blob: adbc600ec6cfea54173d7b746d1ffddab578a828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# This shell script runs Homebrew's test suite.

cd `dirname $0`

EXIT=0
/usr/bin/ruby test_bucket.rb $* || EXIT=1
/usr/bin/ruby test_formula.rb $* || EXIT=1
/usr/bin/ruby test_versions.rb $* || EXIT=1
/usr/bin/ruby test_checksums.rb $* || EXIT=1
/usr/bin/ruby test_inreplace.rb $* || EXIT=1
/usr/bin/ruby test_hardware.rb $* || EXIT=1
/usr/bin/ruby test_formula_install.rb $* || EXIT=1
/usr/bin/ruby test_patching.rb $* || EXIT=1
/usr/bin/ruby test_external_deps.rb $* || EXIT=1
/usr/bin/ruby test_pathname_install.rb $* || EXIT=1
/usr/bin/ruby test_utils.rb $* || EXIT=1
/usr/bin/ruby test_ARGV.rb $* || EXIT=1
/usr/bin/ruby test_ENV.rb $* || EXIT=1
/usr/bin/ruby test_updater.rb $* || EXIT=1
/usr/bin/ruby test_string.rb $* || EXIT=1

exit $EXIT