Merged changes from 3.14 branch up to revno 12526

This commit is contained in:
Andrew Johnson
2015-02-27 18:11:37 -06:00
13 changed files with 153 additions and 81 deletions

View File

@@ -70,7 +70,7 @@ static void epicsExceptionTestPrivate ()
try {
char * p = new ( nothrow )
char [unsuccessfulNewSize];
testOk(p == 0, "new (nothrow)");
testOk(p == 0, "new (nothrow) returned %p", p);
}
catch( ... ) {
testFail("new (nothrow): threw");