make documentation/release nots changes for subminor release

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@36444 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-03-28 09:08:55 +00:00
parent 5e77879cbe
commit f7aa3e015f
5 changed files with 26 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2012-03-28 Richard Frith-Macdonald <rfm@gnu.org>
Make release
* Version 2.6.4
Update release notes/documentation
2012-03-25 Richard Frith-Macdonald <rfm@gnu.org>
* TestFramework/Testing.h: Use -isEqualForTestcase: for PASS_EQUAL

View file

@ -9,12 +9,18 @@
The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
@end ifclear
@section Changes in version @samp{2.6.3}
@section Changes in version @samp{2.6.4}
Binor bugfix release.
Test framework extended equality tests.
Android build target
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{2.6.3}
Minor bugfix release.
@section Changes in version @samp{2.6.2}
Added standalone filesystem layout for putting everything in

View file

@ -4,6 +4,12 @@ The release notes include descriptions of API changes, behavior
changes and other information that might help developers and users
migrate to using a newer version of the make system.
@section Version 2.6.4
Test framework enhancement (extended equality tests)
Android built target
@section Version 2.6.3
Bug fixes

View file

@ -170,7 +170,7 @@ the result of the test (YES if the test passed, NO otherwise).
The only other functions are for occasional use to report sections of
the testsuite as not having run for some reason.
There are just four test macros.
There are just four basic test macros.
All have uppercase names beginning with 'PASS'.
All wrap test code and a call to the pass() function in exception handlers.
All provide file name and line number information in the description string.
@ -180,7 +180,9 @@ Code fragments must be enclosed in round brackets if they contain commas.
PASS passes if an expression resulting in an integer value is
non-zero
PASS_EQUAL passes if an expression resulting in an object is identical
to or -isEqual: to another object.
to or -isEqual: to another object (if the expected object
implements the -isEqualForTestcase: method, that is used
instead of -isEqual:)
PASS_EXCEPTION passes if a code fragment raises an exception
PASS_RUNS passes if a code fragment runs without raising an exception

View file

@ -103,5 +103,7 @@ else
echo "Please submit a patch to fix the problem or send a bug report to"
echo "the package maintainer."
fi
echo "Please see $GSTESTLOG for more detail."
fi