]> granicus.if.org Git - check/log
check
12 years agoUpdating examples to use alternatives to the fail* API
brarcher [Sun, 18 Nov 2012 04:13:48 +0000 (04:13 +0000)]
Updating examples to use alternatives to the fail* API

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@677 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoExamples in documentation now are diffs showing entire file as context
brarcher [Sun, 18 Nov 2012 04:13:25 +0000 (04:13 +0000)]
Examples in documentation now are diffs showing entire file as context

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@676 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Calculation of duration for test runs now use clock_gettime() instead of
hugo303 [Wed, 14 Nov 2012 09:13:46 +0000 (09:13 +0000)]
* Calculation of duration for test runs now use clock_gettime() instead of
  gettimeofday(). Definition of DIFF_IN_USEC() moved to check_impl.h.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@675 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Added note on 'make doc/check_html' when releasing manually
hugo303 [Tue, 13 Nov 2012 08:35:41 +0000 (08:35 +0000)]
* Added note on 'make doc/check_html' when releasing manually

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@674 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Fix numeric typo
hugo303 [Mon, 12 Nov 2012 12:45:34 +0000 (12:45 +0000)]
* Fix numeric typo

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@673 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoIf the test_check_ntests_run test fails, print the number of tests expected
brarcher [Sat, 10 Nov 2012 22:54:18 +0000 (22:54 +0000)]
If the test_check_ntests_run test fails, print the number of tests expected

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@672 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoMoving the creation of the suite, to remove a compiler warning
brarcher [Sat, 10 Nov 2012 22:54:03 +0000 (22:54 +0000)]
Moving the creation of the suite, to remove a compiler warning

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@671 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoRemove unneeded variable
brarcher [Sat, 10 Nov 2012 22:53:49 +0000 (22:53 +0000)]
Remove unneeded variable

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@670 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoIf there is a mismatch on the number of tests to run, fail quicker
brarcher [Sat, 10 Nov 2012 22:53:35 +0000 (22:53 +0000)]
If there is a mismatch on the number of tests to run, fail quicker

I have had to add several unit tests, and often times I would forget
to add an entry into either the master tests table or the line number
table. Of course, the tests would run, and several minutes later I
would find out. With this change, if there is a mismatch between the
table sizes, the test fails before starting.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@669 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoadd new ck_assert_ptr_(eq|ne) functions for pointer comparisons
brarcher [Thu, 8 Nov 2012 17:05:31 +0000 (17:05 +0000)]
add new ck_assert_ptr_(eq|ne) functions for pointer comparisons

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@668 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoreplace unnecessary mention of deprecated fail_unless in check.h with ck_assert
brarcher [Thu, 8 Nov 2012 04:51:59 +0000 (04:51 +0000)]
replace unnecessary mention of deprecated fail_unless in check.h with ck_assert

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@667 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofree created srunner
brarcher [Tue, 6 Nov 2012 04:12:21 +0000 (04:12 +0000)]
free created srunner

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@666 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agono check for pointer!=NULL before dereferencing it
brarcher [Tue, 6 Nov 2012 04:11:49 +0000 (04:11 +0000)]
no check for pointer!=NULL before dereferencing it

punpack can return NULL. These unit tests were checking if elements
inside of the return value are NULL, but not if the pointer itself
is NULL.

Additionally, a NULL check is unnecessary for a free.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@665 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix memory leaks
brarcher [Tue, 6 Nov 2012 04:11:37 +0000 (04:11 +0000)]
fix memory leaks

This commit fixes several instances where elements are created
but never free'd.

Although these tests may be run in their own process space,
and at the completion of the tests the memory will be free'd,
it is still good practice to clean up.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@664 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoreplace strcpy with alternative
brarcher [Tue, 6 Nov 2012 04:11:16 +0000 (04:11 +0000)]
replace strcpy with alternative

Although in these contexts using strcpy is safe, usually it is unsafe.
Replacing strcpy with simpler and safer alternatives.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@663 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix memory leak
brarcher [Tue, 6 Nov 2012 04:11:04 +0000 (04:11 +0000)]
fix memory leak

tcase_run_checked_setup returns a TestResult* that is ignored here.
Catching it and freeing it.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@662 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoif fork fails, do not send invalid pid to setpgid
brarcher [Tue, 6 Nov 2012 04:10:54 +0000 (04:10 +0000)]
if fork fails, do not send invalid pid to setpgid

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@661 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix compiler warning: subunit header file not found
brarcher [Tue, 6 Nov 2012 04:10:44 +0000 (04:10 +0000)]
fix compiler warning: subunit header file not found

The code is using ENABLE_SUBUNIT to determine if subunit is available.
HAVE_SUBUNIT_CHILD_H is never defined. When subunit is used, its
header files are never found, causing a compiler warning. This commit
replaces the #if protecting the header to be consistent with the
rest of the code.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@660 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoFixing subunit checking condition in configure.ac
brarcher [Tue, 6 Nov 2012 04:10:35 +0000 (04:10 +0000)]
Fixing subunit checking condition in configure.ac

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@659 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoremoving variable that is written but never read
brarcher [Tue, 6 Nov 2012 04:10:23 +0000 (04:10 +0000)]
removing variable that is written but never read

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@658 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoremove tabs, replace with spaces
brarcher [Tue, 6 Nov 2012 04:10:09 +0000 (04:10 +0000)]
remove tabs, replace with spaces

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@657 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix printing configure warning message when tex not installed
brarcher [Sun, 4 Nov 2012 17:05:17 +0000 (17:05 +0000)]
fix printing configure warning message when tex not installed

The value of $TEX is either 'tex' or 'false'. It is not empty if
tex is unavailable. The previous condition checked if $TEX was
a non-empty string (-n), and if so would print out a warning.
This was always the case, so a warning message would always print.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@656 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoupdate NEWS with information on recent checkins
brarcher [Sun, 4 Nov 2012 03:28:44 +0000 (03:28 +0000)]
update NEWS with information on recent checkins

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@655 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoreplace usage of fail_if(expr, msg) with ck_assert_msg(!expr, msg)
brarcher [Sun, 4 Nov 2012 03:27:43 +0000 (03:27 +0000)]
replace usage of fail_if(expr, msg) with ck_assert_msg(!expr, msg)

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@654 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoreplace usage of fail_unless() with ck_assert_msg()
brarcher [Sun, 4 Nov 2012 03:27:03 +0000 (03:27 +0000)]
replace usage of fail_unless() with ck_assert_msg()

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@653 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoreplace usage of fail() with ck_abort_msg()
brarcher [Sun, 4 Nov 2012 03:25:57 +0000 (03:25 +0000)]
replace usage of fail() with ck_abort_msg()

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@652 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoupdate check.h.in with new check API, and remove reference to deprecated API
brarcher [Sun, 4 Nov 2012 03:25:11 +0000 (03:25 +0000)]
update check.h.in with new check API, and remove reference to deprecated API

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@651 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agosilence warning regarding ignoring pipe's return value
brarcher [Sun, 4 Nov 2012 03:24:27 +0000 (03:24 +0000)]
silence warning regarding ignoring pipe's return value

Check's unit tests were calling pipe but ignore its return value.
This results in a compiler warning. The offending unit tests now
check the return value and call ck_assert_msg with it.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@650 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agosilence warnings when assigning constant string to char*
brarcher [Sun, 4 Nov 2012 03:23:41 +0000 (03:23 +0000)]
silence warnings when assigning constant string to char*

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@649 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoAdding prototype for ppack_cleanup
brarcher [Sun, 4 Nov 2012 03:23:06 +0000 (03:23 +0000)]
Adding prototype for ppack_cleanup

There was no prototype, which would cause a compile warning

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@648 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix printf warnings
brarcher [Sun, 4 Nov 2012 03:22:26 +0000 (03:22 +0000)]
fix printf warnings

fprintf was being passed arguments for items it was not printing

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@647 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix printf format warning
brarcher [Sun, 4 Nov 2012 03:21:36 +0000 (03:21 +0000)]
fix printf format warning

timeval contains long unsigned values, but fprintf was being told they
were signed integers.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@646 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agofix warning for unused variables
brarcher [Sun, 4 Nov 2012 03:20:36 +0000 (03:20 +0000)]
fix warning for unused variables

This fixes a number of cases where a variable is written to but
never read. Nothing functional has changed, simply silencing some
warnings.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@645 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoAdd override for clock_gettime() in libcompat for systems that do not supply it
brarcher [Sun, 4 Nov 2012 03:18:59 +0000 (03:18 +0000)]
Add override for clock_gettime() in libcompat for systems that do not supply it

clock_gettime() is defined in POSIX.1-2001. However, some systems
(notably OSX) do not provide it. To allow such system to compile check,
clock_gettime() is added to libcompat. In the libcompat version, equivalent
calls for OSX are added to get time. For other systems, clock_gettime()
simply sets the time to 0.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@644 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoChange definition of unsetenv to follow POSIX.1-2001
brarcher [Sun, 4 Nov 2012 03:13:44 +0000 (03:13 +0000)]
Change definition of unsetenv to follow POSIX.1-2001

Prior to glibc 2.2.2, unsetenv() was prototyped as returning void, as was
this version. However, check's unit tests expect unsetenv to return
an integer. On systems where the override version of unsetenv is used,
check would not compile.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@643 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoRemove stray ; from putenv
brarcher [Sun, 4 Nov 2012 03:08:37 +0000 (03:08 +0000)]
Remove stray ; from putenv

There was a stray ; in putenv's defintion. On systems with no putenv,
lib/putenv.c will be used instead, which fails to compile.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@642 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoAdding myself to the AUTHORS file
brarcher [Sun, 4 Nov 2012 03:03:37 +0000 (03:03 +0000)]
Adding myself to the AUTHORS file

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@641 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoUpdated release instructions
hugo303 [Mon, 22 Oct 2012 15:50:50 +0000 (15:50 +0000)]
Updated release instructions

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@640 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Update for release
hugo303 [Mon, 22 Oct 2012 12:35:00 +0000 (12:35 +0000)]
* Update for release

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@638 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Updated versions for 0.9.9 relese
hugo303 [Mon, 22 Oct 2012 11:54:14 +0000 (11:54 +0000)]
* Updated versions for 0.9.9 relese

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@637 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Distribute test_check_nofork.sh also
hugo303 [Mon, 22 Oct 2012 11:39:13 +0000 (11:39 +0000)]
* Distribute test_check_nofork.sh also

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@636 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Measure test duration and print in XML output
hugo303 [Fri, 19 Oct 2012 09:40:57 +0000 (09:40 +0000)]
* Measure test duration and print in XML output

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@635 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Updated XML output format
hugo303 [Fri, 19 Oct 2012 09:26:16 +0000 (09:26 +0000)]
* Updated XML output format

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@634 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Transforms check XML to format suitable for JUnit
hugo303 [Fri, 19 Oct 2012 08:39:39 +0000 (08:39 +0000)]
* Transforms check XML to format suitable for JUnit

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@633 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoAdded support for setting log files via environment variables
hugo303 [Mon, 15 Oct 2012 16:45:20 +0000 (16:45 +0000)]
Added support for setting log files via environment variables

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@632 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Added better pkg-config and subunit support
hugo303 [Fri, 12 Oct 2012 13:32:55 +0000 (13:32 +0000)]
* Added better pkg-config and subunit support

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@631 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Make tests/test_vars.in bourne shell compatible
hugo303 [Thu, 11 Oct 2012 14:36:59 +0000 (14:36 +0000)]
* Make tests/test_vars.in bourne shell compatible

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@630 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Added ck_ prefix to mutex_lock variable
hugo303 [Thu, 11 Oct 2012 14:06:13 +0000 (14:06 +0000)]
* Added ck_ prefix to mutex_lock variable

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@629 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years agoUpdated with more patch submitters
hugo303 [Thu, 11 Oct 2012 13:08:45 +0000 (13:08 +0000)]
Updated with more patch submitters

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@628 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* In autoconf, request system extensions to generate 64-bit safe code
hugo303 [Thu, 11 Oct 2012 12:20:49 +0000 (12:20 +0000)]
* In autoconf, request system extensions to generate 64-bit safe code

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@627 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Fix for mutex deadlock when killing threads, patch #3564640 on SF
hugo303 [Thu, 11 Oct 2012 11:55:13 +0000 (11:55 +0000)]
* Fix for mutex deadlock when killing threads, patch #3564640 on SF

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@626 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Make XML output well-formed
hugo303 [Thu, 11 Oct 2012 09:12:18 +0000 (09:12 +0000)]
* Make XML output well-formed

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@625 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Updated fixed item
hugo303 [Thu, 11 Oct 2012 09:10:21 +0000 (09:10 +0000)]
* Updated fixed item

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@624 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Fix buggy duration calculation, bug #3575451 on SF
hugo303 [Thu, 11 Oct 2012 09:07:36 +0000 (09:07 +0000)]
* Fix buggy duration calculation, bug #3575451 on SF

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@623 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Measure test duration correctly. Fixes SF bug #3575451.
hugo303 [Thu, 11 Oct 2012 08:53:08 +0000 (08:53 +0000)]
* Measure test duration correctly. Fixes SF bug #3575451.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@622 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* Add Mateusz Loskot as an author along with his MSVC / CMake patch.
cpickett [Thu, 14 Jun 2012 02:47:08 +0000 (02:47 +0000)]
* Add Mateusz Loskot as an author along with his MSVC / CMake patch.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@621 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* add contrib/improved_make_check
cpickett [Thu, 14 Jun 2012 01:44:39 +0000 (01:44 +0000)]
* add contrib/improved_make_check

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@620 64e312b2-a51f-0410-8e61-82d0ca0eb02a

12 years ago* clean up formatting of AUTHORS file
cpickett [Thu, 14 Jun 2012 01:34:00 +0000 (01:34 +0000)]
* clean up formatting of AUTHORS file

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@619 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years agoMore clean-up in AUTHORS.
mloskot [Tue, 3 Jan 2012 22:42:52 +0000 (22:42 +0000)]
More clean-up in AUTHORS.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@618 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years agoTidy up AUTHORS. More git svn workflow tests
mloskot [Tue, 3 Jan 2012 22:27:59 +0000 (22:27 +0000)]
Tidy up AUTHORS. More git svn workflow tests

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@617 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years agoAUTHORS formatting. Testing git svn workflow
mloskot [Tue, 3 Jan 2012 21:36:03 +0000 (21:36 +0000)]
AUTHORS formatting. Testing git svn workflow

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@616 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years agoTypos. My first test commit.
mloskot [Mon, 2 Jan 2012 23:59:24 +0000 (23:59 +0000)]
Typos. My first test commit.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@615 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Added a chapter for selective running of tests.
hugo303 [Fri, 2 Dec 2011 21:18:28 +0000 (21:18 +0000)]
* Added a chapter for selective running of tests.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@614 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Added a chapter for selective running of tests.
hugo303 [Fri, 2 Dec 2011 21:16:56 +0000 (21:16 +0000)]
* Added a chapter for selective running of tests.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@613 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Added comment on message pipe fix.
hugo303 [Tue, 15 Nov 2011 16:07:30 +0000 (16:07 +0000)]
* Added comment on message pipe fix.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@612 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Added todo docs for selective running.
hugo303 [Tue, 15 Nov 2011 16:06:13 +0000 (16:06 +0000)]
* Added todo docs for selective running.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@611 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Fixes problem with very large allocations.
hugo303 [Tue, 15 Nov 2011 02:28:06 +0000 (02:28 +0000)]
* Fixes problem with very large allocations.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@610 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Fixed null pointer dereference if test failed.
hugo303 [Tue, 15 Nov 2011 02:24:21 +0000 (02:24 +0000)]
* Fixed null pointer dereference if test failed.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@609 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Fixed typo: echoo -> echo
hugo303 [Mon, 14 Nov 2011 21:40:26 +0000 (21:40 +0000)]
* Fixed typo: echoo -> echo

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@608 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* Corrected and clarified documentation on fixtures.
hugo303 [Mon, 14 Nov 2011 18:52:40 +0000 (18:52 +0000)]
* Corrected and clarified documentation on fixtures.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@607 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years agoRemoved the '\aa"' file from the name_enc directory and disabled the test.
hugo303 [Wed, 9 Nov 2011 13:17:18 +0000 (13:17 +0000)]
Removed the '\aa"' file from the name_enc directory and disabled the test.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@606 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* rename _fail_unless to _ck_assert_msg and define old API using new API macros
zdenekc [Wed, 1 Jun 2011 09:51:20 +0000 (09:51 +0000)]
* rename _fail_unless to _ck_assert_msg and define old API using new API macros

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@605 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* fix dead assignments and possible null pointer dereference
zdenekc [Wed, 1 Jun 2011 09:42:35 +0000 (09:42 +0000)]
* fix dead assignments and possible null pointer dereference

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@604 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* fix failed test exit in no-fork mode
zdenekc [Wed, 1 Jun 2011 09:41:28 +0000 (09:41 +0000)]
* fix failed test exit in no-fork mode

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@603 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago * Adds RAPP and SSSD as projects using check.
hugo303 [Thu, 3 Mar 2011 14:48:58 +0000 (14:48 +0000)]
 * Adds RAPP and SSSD as projects using check.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@602 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* add link to xslt to xml output, add display of iteration in stylesheet and
zdenekc [Mon, 21 Feb 2011 08:02:16 +0000 (08:02 +0000)]
* add link to xslt to xml output, add display of iteration in stylesheet and
  move it to web page root

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@601 64e312b2-a51f-0410-8e61-82d0ca0eb02a

13 years ago* add eclipse support to contrib dir from Bogdan Cristea
cpickett [Sun, 23 Jan 2011 22:36:51 +0000 (22:36 +0000)]
* add eclipse support to contrib dir from Bogdan Cristea

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@600 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* add new ck_assert_(str|int)_(lt|le|gt|ge) comparison functions
cpickett [Sun, 12 Dec 2010 22:30:58 +0000 (22:30 +0000)]
* add new ck_assert_(str|int)_(lt|le|gt|ge) comparison functions
  - patch from zdenek crha

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@599 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* invert _ck_x and _ck_y to fix strcmp in _ck_assert_str (thanks zdenek crha)
cpickett [Wed, 1 Dec 2010 22:05:51 +0000 (22:05 +0000)]
* invert _ck_x and _ck_y to fix strcmp in _ck_assert_str (thanks zdenek crha)

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@598 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* ignore generated files
cpickett [Wed, 1 Dec 2010 22:00:34 +0000 (22:00 +0000)]
* ignore generated files

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@597 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* Documented new Check API and fixed macros to allow multiple
cpickett [Sat, 27 Nov 2010 00:00:31 +0000 (00:00 +0000)]
* Documented new Check API and fixed macros to allow multiple
  evaluation.  Fixes 3035490.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@596 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* note that svn commit messages are what matter in the ChangeLog
cpickett [Fri, 26 Nov 2010 23:55:46 +0000 (23:55 +0000)]
* note that svn commit messages are what matter in the ChangeLog

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@595 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* ignore test_vars file
cpickett [Fri, 26 Nov 2010 23:31:31 +0000 (23:31 +0000)]
* ignore test_vars file

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@594 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* caveat about delays in updates
cpickett [Sat, 20 Nov 2010 21:02:50 +0000 (21:02 +0000)]
* caveat about delays in updates

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@593 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* more projects using Check
cpickett [Sat, 20 Nov 2010 18:49:55 +0000 (18:49 +0000)]
* more projects using Check

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@592 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years agoDeal with diferent awks' ideas of escaping for gsub's second argument.
micahcowan [Thu, 8 Apr 2010 23:08:36 +0000 (23:08 +0000)]
Deal with diferent awks' ideas of escaping for gsub's second argument.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@591 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years agoEliminate POSIX classes from checkmk.in.
micahcowan [Thu, 8 Apr 2010 19:16:39 +0000 (19:16 +0000)]
Eliminate POSIX classes from checkmk.in.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@590 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years agoChangelog, NEWS, and AUTHORS changes for checkmk stuff.
micahcowan [Sat, 3 Apr 2010 19:19:08 +0000 (19:19 +0000)]
Changelog, NEWS, and AUTHORS changes for checkmk stuff.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@589 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years agoMerge in checkmk branch.
micahcowan [Sat, 3 Apr 2010 19:03:27 +0000 (19:03 +0000)]
Merge in checkmk branch.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@587 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago * Removed doubled unused lock variable.
hugo303 [Fri, 26 Feb 2010 14:48:51 +0000 (14:48 +0000)]
 * Removed doubled unused lock variable.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@586 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago * Added missing prototype for make_selective_suite()
hugo303 [Fri, 26 Feb 2010 13:38:58 +0000 (13:38 +0000)]
 * Added missing prototype for make_selective_suite()

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@585 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years agoSelective testing support in run_test_*
jemarch [Thu, 18 Feb 2010 19:37:32 +0000 (19:37 +0000)]
Selective testing support in run_test_*

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@584 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* fix link (thanks SJS)
cpickett [Sat, 16 Jan 2010 20:47:06 +0000 (20:47 +0000)]
* fix link (thanks SJS)

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@575 64e312b2-a51f-0410-8e61-82d0ca0eb02a

14 years ago* add CuTest to docs (thanks SJS)
cpickett [Sat, 16 Jan 2010 07:13:46 +0000 (07:13 +0000)]
* add CuTest to docs (thanks SJS)

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@574 64e312b2-a51f-0410-8e61-82d0ca0eb02a

15 years ago* declare mutex_lock as static to stop it from getting exported
cpickett [Mon, 14 Dec 2009 19:22:57 +0000 (19:22 +0000)]
* declare mutex_lock as static to stop it from getting exported

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@573 64e312b2-a51f-0410-8e61-82d0ca0eb02a

15 years ago * Fixed html manual generation
hugo303 [Mon, 19 Oct 2009 22:43:09 +0000 (22:43 +0000)]
 * Fixed html manual generation

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@572 64e312b2-a51f-0410-8e61-82d0ca0eb02a

15 years ago * Fixed manual link again
hugo303 [Mon, 19 Oct 2009 22:40:09 +0000 (22:40 +0000)]
 * Fixed manual link again

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@571 64e312b2-a51f-0410-8e61-82d0ca0eb02a

15 years ago * Fixed manual link
hugo303 [Mon, 19 Oct 2009 21:37:55 +0000 (21:37 +0000)]
 * Fixed manual link

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@570 64e312b2-a51f-0410-8e61-82d0ca0eb02a

15 years ago * Clean all generated files
hugo303 [Mon, 19 Oct 2009 21:15:34 +0000 (21:15 +0000)]
 * Clean all generated files

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@569 64e312b2-a51f-0410-8e61-82d0ca0eb02a

15 years ago* Fixed upload of web files when releasing.
hugo303 [Mon, 5 Oct 2009 22:00:23 +0000 (22:00 +0000)]
* Fixed upload of web files when releasing.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@568 64e312b2-a51f-0410-8e61-82d0ca0eb02a