blob: da6bbc03a6728b7c0e4fae8efe874b5b4b6af17b [file] [log] [blame]
#!/usr/bin/env python3
import sys
sys.stdout.write(
'Content-type: multipart/x-mixed-replace;boundary=asdf\r\n\r\n'
'--asdf\n'
'Content-type: text/plain\n'
'\n'
'This test passes if the last multipart frame is displayed.\n'
'FAIL\n'
'\n'
'{padding}\r\n'
'--asdf\n'
'Content-type: text/plain\n'
'\n'
'This test passes if the last multipart frame is displayed.\n'
'PASS\n'
'{padding}\r\n'
'--asdf--\n'.format(padding=' ' * 5000)
)