aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-20 21:12:24 -0700
committerAdam Vandenberg2010-07-20 21:16:33 -0700
commitf17a92ff40f3195f5b116f7fce31770e8b34d937 (patch)
tree72a1afcff6152be2fb1499a79ab653c4106aced1 /Library/Homebrew/test
parent070421f4413e32d14252275c4169bb7daeff6806 (diff)
downloadbrew-f17a92ff40f3195f5b116f7fce31770e8b34d937.tar.bz2
Clean up test script & use system ruby to run tests
Diffstat (limited to 'Library/Homebrew/test')
-rwxr-xr-xLibrary/Homebrew/test/tests36
1 files changed, 15 insertions, 21 deletions
diff --git a/Library/Homebrew/test/tests b/Library/Homebrew/test/tests
index 21cc9f17e..87125decb 100755
--- a/Library/Homebrew/test/tests
+++ b/Library/Homebrew/test/tests
@@ -1,23 +1,17 @@
-#!/usr/bin/env bash
-
+#!/bin/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.
-#
-# Feel free to split out test_bucket
-ruby test_bucket.rb $*
-ruby test_formula.rb $*
-ruby test_versions.rb $*
-ruby test_checksums.rb $*
-ruby test_inreplace.rb $*
-ruby test_hardware.rb $*
-ruby test_formula_install.rb $*
-ruby test_patching.rb $*
-ruby test_external_deps.rb $*
-ruby test_pathname_install.rb $*
-ruby test_utils.rb $*
-ruby test_ARGV.rb $*
-ruby test_ENV.rb $*
-ruby test_updater.rb $*
+/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 $*