aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-05-05 16:49:32 -0500
committerJack Nagel2012-05-05 16:49:32 -0500
commite73ad9e1f9da894d1230a42358aa0f280a781a0f (patch)
tree4a596dc0f80b48b8d6103bb1129bab2e15edc023 /Library
parentd8a859e8be70fda657119053e6b3fcddc12a309f (diff)
downloadhomebrew-e73ad9e1f9da894d1230a42358aa0f280a781a0f.tar.bz2
percona-toolkit: use full paths in test
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/percona-toolkit.rb36
1 files changed, 18 insertions, 18 deletions
diff --git a/Library/Formula/percona-toolkit.rb b/Library/Formula/percona-toolkit.rb
index 1b2be295c..62fb20218 100644
--- a/Library/Formula/percona-toolkit.rb
+++ b/Library/Formula/percona-toolkit.rb
@@ -16,23 +16,23 @@ class PerconaToolkit < Formula
end
def test
- system "pt-archiver"
- system "pt-config-diff"
- system "pt-deadlock-logger"
- system "pt-duplicate-key-checker"
- system "pt-find"
- system "pt-fk-error-logger"
- system "pt-heartbeat"
- system "pt-kill"
- system "pt-log-player"
- system "pt-pmp"
- system "pt-slave-delay"
- system "pt-slave-find"
- system "pt-slave-restart"
- system "pt-summary"
- system "pt-table-checksum"
- system "pt-table-sync"
- system "pt-upgrade"
- system "pt-variable-advisor"
+ system "#{bin}/pt-archiver"
+ system "#{bin}/pt-config-diff"
+ system "#{bin}/pt-deadlock-logger"
+ system "#{bin}/pt-duplicate-key-checker"
+ system "#{bin}/pt-find"
+ system "#{bin}/pt-fk-error-logger"
+ system "#{bin}/pt-heartbeat"
+ system "#{bin}/pt-kill"
+ system "#{bin}/pt-log-player"
+ system "#{bin}/pt-pmp"
+ system "#{bin}/pt-slave-delay"
+ system "#{bin}/pt-slave-find"
+ system "#{bin}/pt-slave-restart"
+ system "#{bin}/pt-summary"
+ system "#{bin}/pt-table-checksum"
+ system "#{bin}/pt-table-sync"
+ system "#{bin}/pt-upgrade"
+ system "#{bin}/pt-variable-advisor"
end
end