ObjFW  Check-in [104efe57a2]

Overview
Comment:OFSystemInfoTests: Fix printing the wrong path
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 104efe57a2c6f4fdf329d00862fc6c76b8a4355a282411b3cdb0b8dfca4b59b1
User & Date: js on 2018-06-17 18:43:01
Other Links: manifest | tags
Context
2018-06-19
22:35
.travis.yml: Separate jobs for iOS check-in: 137fee6ddd user: js tags: trunk
2018-06-17
18:43
OFSystemInfoTests: Fix printing the wrong path check-in: 104efe57a2 user: js tags: trunk
18:41
ofarc: LHAArchive: Fix type mismatch check-in: b508aa2625 user: js tags: trunk
Changes

Modified tests/OFSystemInfoTests.m from [d3ce6a43df] to [76ac388a21].

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

	PRINT(GREEN, @"Operating system version: %@",
	    [OFSystemInfo operatingSystemVersion]);

#ifdef OF_HAVE_FILES
	PRINT(GREEN, @"User data path: %@", [OFSystemInfo userDataPath]);

	PRINT(GREEN, @"User config path: %@", [OFSystemInfo userDataPath]);
#endif

	PRINT(GREEN, @"CPU vendor: %@", [OFSystemInfo CPUVendor]);

#if defined(OF_X86_64) || defined(OF_X86)
	PRINT(GREEN, @"Supports MMX: %d", [OFSystemInfo supportsMMX]);








|







38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

	PRINT(GREEN, @"Operating system version: %@",
	    [OFSystemInfo operatingSystemVersion]);

#ifdef OF_HAVE_FILES
	PRINT(GREEN, @"User data path: %@", [OFSystemInfo userDataPath]);

	PRINT(GREEN, @"User config path: %@", [OFSystemInfo userConfigPath]);
#endif

	PRINT(GREEN, @"CPU vendor: %@", [OFSystemInfo CPUVendor]);

#if defined(OF_X86_64) || defined(OF_X86)
	PRINT(GREEN, @"Supports MMX: %d", [OFSystemInfo supportsMMX]);