percona-toolkit: use full paths in test

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Jack Nagel 2012-05-05 16:49:32 -05:00
parent 72bc963f8f
commit 64014de16f
1 changed files with 18 additions and 18 deletions

View File

@ -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