diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-27 23:46:48 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-27 23:46:48 +0000 |
commit | e817eb6cece7c2f97ff07bdbe2b15e38fa807d9f (patch) | |
tree | a3f047afb82b45dbb1a941029df149d60cdc3475 /tests | |
parent | 060f7ca2d2a7f5c8845a62a143c1d9fa988d1269 (diff) | |
download | curl-e817eb6cece7c2f97ff07bdbe2b15e38fa807d9f.tar.gz |
log a 1120 chars long string to aid in quoted-printable and soft
line break detection in daily build logs.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index a041f568b..de6fba408 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -265,11 +265,14 @@ if ($fixed < 4) { close(F); } +my $str1066os = 'o' x 1066; + # Set timestamp to the UTC this script is running. Its value might # be changed later in the script to the value present in curlver.h $timestamp = scalar(gmtime)." UTC"; logit "STARTING HERE"; # first line logged, for scripts to trigger on +logit 'TRANSFER CONTROL ==== 1120 CHAR LINE' . $str1066os . 'LINE_END'; logit "NAME = $name"; logit "EMAIL = $email"; logit "DESC = $desc"; @@ -282,6 +285,8 @@ logit "target = ".$targetos; logit "version = $version"; # script version logit "date = $timestamp"; # When the test build starts +$str1066os = undef; + # Make $pwd to become the path without newline. We'll use that in order to cut # off that path from all possible logs and error messages etc. $pwd = cwd(); |