123456789101112131415 |
- let http: Http = new Http
- let i
- for (i = 8100; i < 9129; i++) {
- Path('a.dat').write('a'.times(i) + '\n')
- http.upload('http://127.0.0.1:18080/action/uploadTest', { myfile: 'a.dat' } )
- if (http.status != 200) {
- print('Failed', i)
- break
- } else {
- print('Passed', i)
- }
- http.wait()
- }
|