Changeset 1345
- Timestamp:
- 01/08/06 11:05:14 (15 years ago)
- Location:
- TI05-delivery/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/trunk/src/bbftp-client-3.2.0/bbftpc/bbftp.c
r1265 r1345 90 90 #define OPTIONS "qbcde:E:f:g:i:I:l:L:mno:p:r:R:sStu:vVw:WD::" 91 91 #endif 92 93 #include <unistd.h> 92 94 /* 93 95 #endif … … 536 538 } 537 539 } 540 541 // DEBUG 542 sleep(15); 538 543 539 544 #ifdef PRIVATE_AUTH -
TI05-delivery/trunk/test/runclient.py
r1289 r1345 26 26 27 27 def authenticate(self): 28 #print >>sys.stderr, "Waiting 20s for gdb connect: pid=%d" % os.getpid(),29 #time.sleep(20)30 #print >>sys.stderr, "continueing"31 32 28 self.send(NDG_HANDSHAKE) 33 29 resp = self.recv() -
TI05-delivery/trunk/test/test_embedded.py
r1336 r1345 30 30 31 31 def authenticate(self): 32 # Dump the pid so that gdm can pick it up33 fh = open('./DS_conn.pid', 'w')34 print >>fh, os.getpid()35 fh.close()36 #time.sleep(15)37 32 38 33 msg = self.recv() … … 198 193 output = self._runClient("dir .", debug=True) 199 194 195 print >>open('./bbftpc.log', 'w'), output 196 200 197 self.assertLines(['Received Auth handshake: NDG-Delivery-server %s' % VERSION], output) 201 198
Note: See TracChangeset
for help on using the changeset viewer.