summaryrefslogtreecommitdiff
path: root/infrastructure
Commit message (Collapse)AuthorAge
...
* Add -U option to enable logging microsecond timestampsChris Wilson2007-12-15
|
* Use detected CXX, AR and RANLIB from configure.Chris Wilson2007-12-08
|
* Don't add a superfluous leading space to bbackupd_args.Chris Wilson2007-11-06
|
* Compile fix for [1903].Chris Wilson2007-11-04
|
* Remove all the extra newlines after the Fink message.Chris Wilson2007-11-03
|
* Log something before checking open file descriptors, to ensure thatChris Wilson2007-11-03
| | | | | | the notification socket is open already on MacOS X, as it will be at the end of the test because you can't close it.
* Log exactly which file descriptors have been left open and what they are.Chris Wilson2007-11-03
|
* Don't include the install-backup-client script in Windows builds, as it'sChris Wilson2007-09-19
| | | | | pretty useless without Cygwin, and of marginal use with it (refs #24).
* Fix $bsd_make to not be defined on GNU/kFreeBSD, which uses GNU Make.Chris Wilson2007-08-30
|
* Fix quiet-build makefiles to work on BSDsChris Wilson2007-08-28
|
* Quiet make by default (make V=1 to override) (refs #3)Chris Wilson2007-07-31
|
* Fix to match static lib installation instructions. (refs #3, merges [1681])Chris Wilson2007-07-26
|
* Update Visual Studio project files to match new files added, thanks Gary!Chris Wilson2007-07-26
| | | | | (refs #3, merges [1674])
* Remove --with-bdb-dir option, to avoid confusion and be consistent with theChris Wilson2007-07-01
| | | | | SSL flags. (merges [1717] by James O'Gorman, refs #3)
* Add --with-bdb-headers and --with-bdb-lib flags to configure to fix BerkeleyChris Wilson2007-07-01
| | | | | | | DB detection issues on FreeBSD. The original --with-bdb-dir flag is still present for systems that install BDB in a "standard" location. (merges [1714] from trunk by James O'Gorman, refs #3)
* Improved build targets, thanks to James O'Gorman (fixes #30)Chris Wilson2007-06-30
|
* Replace version in VERSION.txt, if it contains USE_SVN_VERSION.Chris Wilson2007-06-27
|
* Handle USE_SVN_VERSION in the middle of a version string.Chris Wilson2007-06-27
|
* Handle USE_SVN_VERSION in distribution VERSION files.Chris Wilson2007-06-27
|
* Include <string> to avoid compile failures on BSD, thanks James O'Gorman.Chris Wilson2007-06-20
| | | | | (refs #3, merges [1698])
* Make testfiles writable before trying to delete them, otherwise read-onlyChris Wilson2007-05-03
| | | | | tests might not work (refs #3)
* Add --bbackupd-args and --bbstored-args options, which may be used to passChris Wilson2007-04-22
| | | | | | | | | | | | | | | | | | | | | | | | additional command-line parameters to bbackupd and bbstored in some tests. Add -t and -T options, which add tags and timestamps to log messages using the logging framework inside the tests themselves. Now you can do things like: ./t -Tt test \ --bbackupd-args="-VTkt bbackupd" \ --bbstored-args="-VTkt bbstored" and you will get output from the test itself, the bbackupd and bbstored daemons, all interleaved, timestamped and tagged on the console. This is very useful for debugging synchronisation problems, where interleaved output from bbackupd and bbstored in the system logs is not enough, because you want to see exactly how they interact with the test, or you don't have access to the system logs. (refs #3)
* Pass all arguments from test scripts to test executable with properChris Wilson2007-04-22
| | | | | quoting (refs #3)
* Merge new m4 from trunk. (refs #3, merges [1453])Chris Wilson2007-03-24
|
* Fix make error when optional file doesn't exist (refs #3, merges [1098])Chris Wilson2007-03-04
|
* #include Test.h to fix compile (needed for TEST_THAT)Chris Wilson2007-03-04
| | | | | | | | | Improved error message Improved comments (refs #3, merges parts of [712], [1289] and [1337])
* Rename makedistribution.pl to makedistribution.pl.in.Chris Wilson2007-01-13
| | | | | | | | Auto-generate makedistribution.pl in configure, to replace @PERL@ in shebang line. Process spec files as text files, to allow removing private parts. (refs #3)
* Visual Studio 2005 compile fixes, thanks to Gary.Chris Wilson2006-12-29
| | | | | Enable (and require) PCRE when building with Visual Studio 2005.
* Compile fix: include std::string definition (refs #3)Chris Wilson2006-12-12
|
* Pass any command-line parameters from t-gdb to gdb (refs #3)Chris Wilson2006-12-03
|
* * Try to kill any daemons left over from previous tests before running Chris Wilson2006-11-26
| | | | | | new tests. * Try to kill any remaining daemons at the end of the test (refs #3)
* Initialise timers in all unit tests (refs #9)Chris Wilson2006-11-13
|
* Initialise memory leak finder in all unit tests (refs #3)Chris Wilson2006-11-13
|
* Force glibc to use new/delete to allocate memory and disable its Chris Wilson2006-11-13
| | | | | | internal pools for the unit tests, to make memory leak detection work (refs #3)
* Added a script to determine the build version on Win32 MSVC. (refs #3)Chris Wilson2006-10-16
|
* Updated MSVC project files. (refs #3)Chris Wilson2006-10-16
|
* (refs #3)Chris Wilson2006-10-13
| | | | | * Created directory for mingw compile utilities, added configure script
* (refs #3)Chris Wilson2006-09-02
| | | | | Automatically initialise Windows sockets for all tests
* * infrastructure/makebuildenv.pl.inChris Wilson2006-08-31
| | | | | | | | | | | | | | | | | | | | | | | Support multiple implicit dependencies Add lib/win32 as an implicit dependency on Win32 Make lib/common depend on lib/win32 on Win32 Fix space between test file name platform executable extension, and between executable name and arguments, in test shell scripts Add support for compiling resource files (.rc) on Win32 Fix dependencies to avoid unnecessary rebuilds when not using BSD make Code cleanups Fix typos (refs #3)
* * infrastructure/makebuildenv.pl.inChris Wilson2006-08-31
| | | | | - Revert to trunk
* * infrastructure/buildenv-testmain-template.cppChris Wilson2006-08-31
| | | | | | | Record the file and line of first test failure, and print them at the end of the test, useful for debugging when the first failure has scrolled off screen (refs #3)
* * buildenv-testmain-template.cppChris Wilson2006-08-31
| | | | | - Revert to trunk
* * infrastructure/BoxPlatform.pm.inChris Wilson2006-08-31
| | | | | | | | | | | Determine whether we are building for Windows or not, and export that information Search for VERSION.txt in a few more places, for example when running Perl scripts like getversion.pl (refs #3)
* * infrastructure/BoxPlatform.pm.inChris Wilson2006-08-31
| | | | | - Revert to trunk
* * infrastructure/BoxPlatform.pm.inChris Wilson2006-08-30
| | | | | | | * win32.bat * bin/bbackupd/BackupClientDirectoryRecord.cpp - Merged back changes from trunk
* * BoxPlatform.pm.inChris Wilson2006-08-07
| | | | | - Removed $build_cpu and `uname -p` entirely, as they are not used anywhere
* * mergeChris Wilson2006-07-27
| | | | | | | - This is my current patch queue. I think that all of these are safe to apply. This is just under half of the pending changes in chris/general (the easy half).
* Apply patch from Stuart Hickinbottom <stuarth@hickinbottom.demon.co.uk> to ↵Ben Summers2006-06-19
| | | | fix complication problems with gcc 4.1.1 where configure didn't detect LLONG_MAX properly. Fix by removing configure check completely, and using STL interface.
* Fix execute permission on substituted perl scriptsMartin Ebourne2006-03-12
|
* Fix for perl changes. makebuildenv now works with $(PERL) when executing ↵Martin Ebourne2006-03-04
| | | | | | | autogen code from Makefile.extras. Still not working fully though - execute permission lost on all substituted scripts.