diff options
| author | Jack Nagel | 2012-05-05 16:49:32 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-05-05 16:49:32 -0500 |
| commit | e73ad9e1f9da894d1230a42358aa0f280a781a0f (patch) | |
| tree | 4a596dc0f80b48b8d6103bb1129bab2e15edc023 /Library | |
| parent | d8a859e8be70fda657119053e6b3fcddc12a309f (diff) | |
| download | homebrew-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.rb | 36 |
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 |
