summaryrefslogtreecommitdiff
path: root/tests/testcurl.pl
Commit message (Collapse)AuthorAgeFilesLines
* cleanup: misc typos in strings and commentsluz.paz2018-03-161-1/+1
| | | | | | Found via `codespell` Closes #2389
* includes: remove curl/curlbuild.h and curl/curlrules.hDaniel Stenberg2017-06-141-16/+1
| | | | | | | | Rely entirely on curl/system.h now. Introduced in Aug 2008 with commit 14240e9e109f. Now gone. Fixes #1456
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-2/+2
|
* testcurl.pl: use rel2abs to make the source directory absoluteDan Fandrich2015-05-241-3/+3
| | | | | | This function makes a platform-specific absolute path which uses backslashes on Windows. This form works when passing it on the command-line, as well as if the source is on another drive.
* testcurl.pl: allow source to be in an arbitrary directoryDan Fandrich2015-05-211-11/+16
| | | | | This way, the build directory can be located on an entirely different filesystem from the source code (e.g. a tmpfs).
* testcurl.pl: add the --notes option to supply more info about a buildDan Fandrich2015-03-241-1/+5
| | | | | Support for notes has been in place for a while, but it required being added to the setup file manually.
* testcurl: Allow '=' in values given on command lineDagobert Michelsen2015-03-211-7/+7
|
* testcurl: bump the version of this script!Daniel Stenberg2014-11-251-1/+1
|
* testcurl: skip reading the setup file if given enough cmdline infoDaniel Stenberg2014-11-251-2/+9
| | | | | This makes it much easier to run multiple tests in the same directory, just altering the command lines used.
* testcurl.pl: log the value of --runtestopts in the test headerDan Fandrich2014-07-171-0/+1
|
* testcurl.pl: always show the last 5 commits even with --nogitpullMarc Hoersken2014-01-051-21/+35
|
* curl tool: renaming hugehelp files to tool_hugehelpYang Tse2012-12-261-1/+1
|
* testcurl.pl: build example programs for several autobuildsYang Tse2012-11-301-1/+21
| | | | Affected autobuilds: IRIX, AIX, Tru64 and AIX.
* testcurl.pl: fix missing semicolonNeil Bowers2012-07-021-1/+1
|
* testcurl.pl: allow non in-tree c-ares enabled autobuildYang Tse2012-07-021-2/+9
|
* testcurl.pl: build example programs for Android cross-compilesYang Tse2012-04-131-2/+3
|
* testcurl.pl: build example programs for MinGW cross-compilesYang Tse2012-04-121-1/+16
|
* testcurl.pl: log more environment vars that modify configure and build behaviorYang Tse2012-04-121-2/+9
|
* testcurl.pl: 82c344a3 follow-upYang Tse2011-12-271-5/+6
|
* testcurl.pl: log ACLOCAL_FLAGSYang Tse2011-12-261-0/+1
|
* testcurl.pl: third party m4 warnings filtering adjustmentYang Tse2011-12-261-2/+3
| | | | | | | Make testcurl.pl ignore messages pertaining to third party m4 files we don't care nor use on a file basis policy while retaining all other warnings. This closes temporary commit e71e226f
* testcurl.pl: temporary changeYang Tse2011-12-231-2/+3
| | | | | Allow autobuilds to run a couple of days without filtering out aclocal underquoted definition warnings.
* Display notes from setup file in testcurl.plDan Fandrich2011-06-231-2/+4
| | | | | | | | | | | | | | | Autobuild submitters can use this to add some text to their setup files to describe issues they've found with the build or tests. This could include laying blame on test failures on network issues or dependent libraries, explaining away compiler warnings or providing any additional information that could be useful to people reviewing and investigating problems with the publicly available autobuild logs. Note that persistent test failures that are not issues with curl itself should normally be fixed by excluding them from the test run instead. This is an entirely optional field that is not entered by the user the first time a new build is created.
* testcurl.pl: allow configure args to use '='Daniel Stenberg2011-05-311-3/+4
|
* Added --noconfigure switch to testcurl.pl.Guenter Knauf2010-10-141-1/+6
|
* Trial to fix win32 autobuilds.Guenter Knauf2010-08-201-10/+11
| | | | | | | It seems that its time to look at some better ideas for the win32 non-configure builds; probably a prebuild target which copies config-win32.h to curl_config.h and appends also then feature defines like USE_ARES.
* Added msys Perl since git for Win32 comes with own Perl which identifies as ↵Guenter Knauf2010-08-101-1/+1
| | | | msys.
* Make testcurl.pl Watcom-aware.Guenter Knauf2010-08-101-4/+7
|
* Use correct directory for c-ares git pullGuenter Knauf2010-04-131-3/+3
| | | | Signed-off-by: Tor Arntsen <tor@spacetec.no>
* added last git commit output for c-ares too.Guenter Knauf2010-04-131-7/+15
|
* changed the git update block to take care of c-ares repo if detected.Guenter Knauf2010-04-131-25/+20
|
* updated timestamp of the script.Guenter Knauf2010-04-121-1/+1
|
* removed obsolete var in gitpull() functionGuenter Knauf2010-04-121-5/+2
| | | | no need to create a var - lets just return the status var itself.
* Allow running ./tests/testcurl.pl from within git repo.Ben Greear2010-03-281-0/+4
| | | | | | | | My first instinct was to run the test script within the checked out repository. This small change to the script allows that to work as expected. Signed-off-by: Ben Greear <greearb@candelatech.com>
* make sure git pull is actually done!Daniel Stenberg2010-03-271-13/+11
|
* Avoid double newline for the 'last commits' log in testcurl.plTor Arntsen2010-03-251-0/+1
| | | | | | The backtick command which extracts 'git log' lines come with a newline, so chomp the newline before calling logit(), as the logit function adds a newline by itself.
* Change to version-independent git option for 'git log --oneline'Tor Arntsen2010-03-251-1/+1
| | | | | | 'git log --oneline' is a relatively recent Git function. It is documented to be the same as 'git log --pretty=oneline --abbrev-commit', so use that instead. It works all the way back to Git 1.5.0.
* show 5 commits even if no git pull was madeDaniel Stenberg2010-03-251-5/+5
|
* don't touch ares/aclocal.m4 and show recent git commitsDaniel Stenberg2010-03-251-5/+8
| | | | | | | | since c-ares no longer embedded, we must not touch such files anymore we show the 5 last git commits if git was proven in use, to help us see exactly what's being tested
* provide a version number as today's dateDaniel Stenberg2010-03-241-1/+1
| | | | | It should at least help visualize which autobuilds that are using this script.
* testcurl now uses git instead of CVSDaniel Stenberg2010-03-241-40/+33
|
* restore executable bits on some filesDaniel Stenberg2010-03-241-0/+0
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* renamed generated config.h to curl_config.h in order to avoid clashes when ↵Gunter Knauf2009-07-141-5/+5
| | | | libcurl is used with other projects which also have a config.h (missing bits)
* renamed generated config.h to curl_config.h in order to avoid clashes when ↵Gunter Knauf2009-07-141-1/+1
| | | | libcurl is used with other projects which also have a config.h.
* added PKG_CONFIG_PATH to output to better verify if it gets properly set ↵Gunter Knauf2009-07-131-0/+1
| | | | with cross compiles.
* changed testcurl script to allow building test harnessYang Tse2009-06-111-3/+36
| | | | programs when cross-compiling for a *-*-mingw* host.
* Die when instructed to build c-ares and this failsYang Tse2009-06-031-1/+1
|
* forced to use nmake for VC builds early so that its also used for ares even ↵Gunter Knauf2009-05-211-22/+7
| | | | if we find a GNU make first in path; simplified curl make call.
* strip \r only on non-win32 platforms (wine on Linux).Gunter Knauf2009-05-211-1/+2
|