mirror of
https://github.com/gnustep/tools-make.git
synced 2025-06-03 18:50:55 +00:00
fix bogus log
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32612 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9ee621523a
commit
245bcce8aa
1 changed files with 2 additions and 1 deletions
|
@ -254,7 +254,8 @@ static void testStart()
|
|||
pass((nil == (testExpect__) \
|
||||
|| [[testRaised name] isEqual: (testExpect__)]), \
|
||||
"%s:%d ... " testFormat__, __FILE__, __LINE__, ## __VA_ARGS__); \
|
||||
if (NO == [(testExpect__) isEqual: [testRaised name]]) \
|
||||
if (nil != (testExpect__) \
|
||||
&& NO == [(testExpect__) isEqual: [testRaised name]]) \
|
||||
fprintf(stderr, "Expected '%s' and got '%s'\n", \
|
||||
[(testExpect__) UTF8String], \
|
||||
[[testRaised name] UTF8String]); \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue