ObjFW  Check-in [ab91040318]

Overview
Comment:Automatically run tests.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ab9104031880e40b5808b4ecff0fd607735c8a1876eb53e3f1627cc89b8aa4ef
User & Date: js on 2008-09-14 17:09:54
Other Links: manifest | tags
Context
2008-09-14
17:24
Some changes to make GNU make happy. There are still issues with glibc. check-in: b8a3a0fca9 user: js tags: trunk
17:09
Automatically run tests. check-in: ab91040318 user: js tags: trunk
16:43
Lots of changes. See full commit message. check-in: 7b8b7cd06c user: js tags: trunk
Changes

Modified tests/OFList/Makefile from [587c8395fe] to [df7f084896].

1
2
3
4
5
6
7





PROG_NOINST = oflist
SRCS = OFList.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw












>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
PROG_NOINST = oflist
SRCS = OFList.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw

all: ${PROG_NOINST}
	LD_LIBRARY_PATH=../../src \
	DYLD_LIBRARY_PATH=../../src \
	./${PROG_NOINST}

Modified tests/OFList/OFList.m from [a32f1b4343] to [e065d3f792].

9
10
11
12
13
14
15


16
17
18
19
20
21
22
 * the packaging of this file.
 */

#import <stdio.h>

#import "OFString.h"
#import "OFList.h"


 
int
main()
{
	OFList	     *list;
	OFListObject *iter;








>
>







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 * the packaging of this file.
 */

#import <stdio.h>

#import "OFString.h"
#import "OFList.h"

/* TODO: Do real checks */
 
int
main()
{
	OFList	     *list;
	OFListObject *iter;

Modified tests/OFObject/Makefile from [cea45375f0] to [affb832cb1].

1
2
3
4
5
6
7





PROG_NOINST = ofobject
SRCS = OFObject.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw












>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
PROG_NOINST = ofobject
SRCS = OFObject.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw

all: ${PROG_NOINST}
	LD_LIBRARY_PATH=../../src \
	DYLD_LIBRARY_PATH=../../src \
	./${PROG_NOINST}

Modified tests/OFString/Makefile from [feeef7b901] to [9e09f37810].

1
2
3
4
5
6
7





PROG_NOINST = ofstring
SRCS = OFString.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw












>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
PROG_NOINST = ofstring
SRCS = OFString.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw

all: ${PROG_NOINST}
	LD_LIBRARY_PATH=../../src \
	DYLD_LIBRARY_PATH=../../src \
	./${PROG_NOINST}

Modified tests/OFString/OFString.m from [04cad32cc2] to [9258edbe28].

9
10
11
12
13
14
15


16
17
18
19
20
21
22
 * the packaging of this file.
 */

#import <stdio.h>
#import <string.h>

#import "OFString.h"



int
main()
{
	OFString *s1 = [OFString new: "foo"];
	OFString *s2 = [[OFString alloc] init: ""];
	OFString *s3;







>
>







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 * the packaging of this file.
 */

#import <stdio.h>
#import <string.h>

#import "OFString.h"

/* TODO: Do real checks */

int
main()
{
	OFString *s1 = [OFString new: "foo"];
	OFString *s2 = [[OFString alloc] init: ""];
	OFString *s3;

Modified tests/OFWideString/Makefile from [644bd3eb54] to [d8754a2dea].

1
2
3
4
5
6
7





PROG_NOINST = ofwidestring
SRCS = OFWideString.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw












>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
PROG_NOINST = ofwidestring
SRCS = OFWideString.m

include ../../buildsys.mk

CPPFLAGS += -I../../src
LIBS += -lobjc -L../../src -lobjfw

all: ${PROG_NOINST}
	LD_LIBRARY_PATH=../../src \
	DYLD_LIBRARY_PATH=../../src \
	./${PROG_NOINST}

Modified tests/OFWideString/OFWideString.m from [8d262602dc] to [b584f40ba9].

9
10
11
12
13
14
15


16
17
18
19
20
21
22
 * the packaging of this file.
 */

#import <stdio.h>
#import <wchar.h>

#import "OFWideString.h"



int
main()
{
	OFWideString *s1 = [OFWideString new: L"foo"];
	OFWideString *s2 = [[OFWideString alloc] init: L""];
	OFWideString *s3;







>
>







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 * the packaging of this file.
 */

#import <stdio.h>
#import <wchar.h>

#import "OFWideString.h"

/* TODO: Do real checks */

int
main()
{
	OFWideString *s1 = [OFWideString new: L"foo"];
	OFWideString *s2 = [[OFWideString alloc] init: L""];
	OFWideString *s3;