mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 17:12:03 +00:00
* Testing/nstimer.m ([TestDouble -sayCount]): Quit test after
20 invocations. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17169 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7d060e1290
commit
57103df2fa
2 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
||||||
Added typedef for GSIVar.
|
Added typedef for GSIVar.
|
||||||
(GSCGetInstanceVariableDefinition): New function.
|
(GSCGetInstanceVariableDefinition): New function.
|
||||||
(GSObjCGetInstanceVariableDefinition): Ditto.
|
(GSObjCGetInstanceVariableDefinition): Ditto.
|
||||||
|
* Testing/nstimer.m ([TestDouble -sayCount]): Quit test after 20
|
||||||
|
invocations.
|
||||||
|
|
||||||
2003-07-07 Richard Frith-Macdonald <rfm@gnu.org>
|
2003-07-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
{
|
{
|
||||||
static int count = 0;
|
static int count = 0;
|
||||||
printf ("Timer fired %d times\n", ++count);
|
printf ("Timer fired %d times\n", ++count);
|
||||||
|
if (count == 20)
|
||||||
|
exit(0);
|
||||||
}
|
}
|
||||||
+ (double) testDouble
|
+ (double) testDouble
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue