summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-13 17:24:44 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-13 17:24:44 +0000
commita736bb19e555730e26ad91c18d54306666456e00 (patch)
treee52582d07a669412843540673b90f2fd3dbd63a4 /bin
parent8d087a5926d7a16af719c71b9682713886e77246 (diff)
Load the protocol tests from the correct location.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/worker21
1 files changed, 11 insertions, 10 deletions
diff --git a/bin/worker b/bin/worker
index 3c9e355..e897c84 100755
--- a/bin/worker
+++ b/bin/worker
@@ -1,4 +1,4 @@
-#!/usr/bin/ruby
+#!/usr/bin/ruby -Ilib/ -I../lib/
#
# This script will pull tests to complete from the Beanstalk Queue,
# where they will be found in JSON form, and executes them.
@@ -22,15 +22,16 @@ require 'mauve/proto'
#
# Implementation of our protocol tests.
#
-require 'tests/ftp'
-require 'tests/http'
-require 'tests/https'
-require 'tests/jabber'
-require 'tests/ldap'
-require 'tests/ping'
-require 'tests/rsync'
-require 'tests/smtp'
-require 'tests/ssh'
+require 'custodian/protocol-tests/ftp.rb'
+require 'custodian/protocol-tests/http.rb'
+require 'custodian/protocol-tests/https.rb'
+require 'custodian/protocol-tests/jabber.rb'
+require 'custodian/protocol-tests/ldap.rb'
+require 'custodian/protocol-tests/ping.rb'
+require 'custodian/protocol-tests/rsync.rb'
+require 'custodian/protocol-tests/smtp.rb'
+require 'custodian/protocol-tests/ssh.rb'
+