mirror of
https://github.com/AdaCore/aws.git
synced 2026-02-12 12:29:46 -08:00
When uploading a file to a server it is possible to use a callback which reports the upload progress. Add corresponding regression test and feature entry. For L814-008.
9 lines
192 B
Python
9 lines
192 B
Python
from test_support import *
|
|
|
|
f=open('file.txt', 'w')
|
|
for k in range(1,1000):
|
|
f.write("azerty azerty azerty azerty azerty azerty azerty azerty")
|
|
f.close()
|
|
|
|
build_and_run('upload_progress');
|