ObjFW  Check-in [7a84580fb6]

Overview
Comment:Rename new tests
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | objfwtest
Files: files | file ages | folders
SHA3-256: 7a84580fb61fb1a64bbc96e94ad27e7c4e08539d7535f8613ccb8d333b09b1e7
User & Date: js on 2024-02-18 19:29:26
Other Links: branch diff | manifest | tags
Context
2024-02-18
19:56
Make iOS Xcode project work with new tests check-in: 7c8c1fd251 user: js tags: objfwtest
19:29
Rename new tests check-in: 7a84580fb6 user: js tags: objfwtest
19:27
Remove old tests check-in: 1fa2f03dc4 user: js tags: objfwtest
Changes

Modified Makefile from [9e336025c2] to [cf98c87f50].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
include extra.mk

SUBDIRS = src utils new_tests
DISTCLEAN = Info.plist		\
	    aclocal.m4		\
	    autom4te.cache	\
	    buildsys.mk		\
	    config.h		\
	    config.log		\
	    config.status	\
	    extra.mk

include buildsys.mk

.PHONY: check docs release

utils new_tests: src

check: new_tests
	${MAKE} -C new_tests -s run

docs:
	rm -fr docs
	doxygen >/dev/null

release: docs
	echo "Generating tarball for version ${PACKAGE_VERSION}..."


|













|

|
|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
include extra.mk

SUBDIRS = src utils tests
DISTCLEAN = Info.plist		\
	    aclocal.m4		\
	    autom4te.cache	\
	    buildsys.mk		\
	    config.h		\
	    config.log		\
	    config.status	\
	    extra.mk

include buildsys.mk

.PHONY: check docs release

utils tests: src

check: tests
	${MAKE} -C tests -s run

docs:
	rm -fr docs
	doxygen >/dev/null

release: docs
	echo "Generating tarball for version ${PACKAGE_VERSION}..."

Modified configure.ac from [42a640d48b] to [914db26e91].

437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
])

AC_DEFINE_UNQUOTED(PLUGIN_SUFFIX, "$PLUGIN_SUFFIX", [Suffix for plugins])
AS_IF([test x"$enable_files" != x"no" -a x"$PLUGIN_SUFFIX" != x""], [
	AC_SUBST(USE_SRCS_PLUGINS, '${SRCS_PLUGINS}')
	AC_SUBST(TESTPLUGIN, "plugin")
	AC_DEFINE(OF_HAVE_PLUGINS, 1, [Whether we have plugin support])
	AC_CONFIG_FILES(new_tests/plugin/Info.plist)

	AS_IF([test x"$build_framework" = x"yes"], [
		TESTPLUGIN_LIBS="-F../../src -F../../src/runtime"
		TESTPLUGIN_LIBS="$TESTPLUGIN_LIBS -framework ObjFW"
		TESTPLUGIN_LIBS="$TESTPLUGIN_LIBS \${RUNTIME_FRAMEWORK_LIBS}"
	], [
		TESTPLUGIN_LIBS="-L../../src -L../../src/runtime"







|







437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
])

AC_DEFINE_UNQUOTED(PLUGIN_SUFFIX, "$PLUGIN_SUFFIX", [Suffix for plugins])
AS_IF([test x"$enable_files" != x"no" -a x"$PLUGIN_SUFFIX" != x""], [
	AC_SUBST(USE_SRCS_PLUGINS, '${SRCS_PLUGINS}')
	AC_SUBST(TESTPLUGIN, "plugin")
	AC_DEFINE(OF_HAVE_PLUGINS, 1, [Whether we have plugin support])
	AC_CONFIG_FILES(tests/plugin/Info.plist)

	AS_IF([test x"$build_framework" = x"yes"], [
		TESTPLUGIN_LIBS="-F../../src -F../../src/runtime"
		TESTPLUGIN_LIBS="$TESTPLUGIN_LIBS -framework ObjFW"
		TESTPLUGIN_LIBS="$TESTPLUGIN_LIBS \${RUNTIME_FRAMEWORK_LIBS}"
	], [
		TESTPLUGIN_LIBS="-L../../src -L../../src/runtime"

Name change from new_tests/ForwardingTests.m to tests/ForwardingTests.m.

Renamed and modified new_tests/Makefile [486a576b53] to tests/Makefile [0e75cf4704].

1
2
3
4
5
6
7
8
9
10
11
12

13
14

15
16
17
18
19
20
21
include ../extra.mk

SUBDIRS = ${TESTPLUGIN} ${SUBPROCESS}

CLEAN = EBOOT.PBP		\
	boot.dol		\
	${PROG_NOINST}.arm9	\
	${PROG_NOINST}.nds	\
	${PROG_NOINST}.nro	\
	${PROG_NOINST}.rpx	\
	testfile_bin.m		\
	testfile_ini.m


PROG_NOINST = tests${PROG_SUFFIX}

SRCS = ${OF_BLOCK_TESTS_M}			\
       ForwardingTests.m			\
       OFArrayTests.m				\
       OFCharacterSetTests.m			\
       OFColorTests.m				\
       OFConcreteArrayTests.m			\
       OFConcreteDictionaryTests.m		\


|









>


>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
include ../extra.mk

SUBDIRS = ${TESTPLUGIN} ${SUBPROCESS} ${OBJC_SYNC} terminal

CLEAN = EBOOT.PBP		\
	boot.dol		\
	${PROG_NOINST}.arm9	\
	${PROG_NOINST}.nds	\
	${PROG_NOINST}.nro	\
	${PROG_NOINST}.rpx	\
	testfile_bin.m		\
	testfile_ini.m
DISTCLEAN = Info.plist

PROG_NOINST = tests${PROG_SUFFIX}
STATIC_LIB_NOINST = ${TESTS_STATIC_LIB}
SRCS = ${OF_BLOCK_TESTS_M}			\
       ForwardingTests.m			\
       OFArrayTests.m				\
       OFCharacterSetTests.m			\
       OFColorTests.m				\
       OFConcreteArrayTests.m			\
       OFConcreteDictionaryTests.m		\

Name change from new_tests/OFArrayTests.h to tests/OFArrayTests.h.

Name change from new_tests/OFArrayTests.m to tests/OFArrayTests.m.

Name change from new_tests/OFBlockTests.m to tests/OFBlockTests.m.

Name change from new_tests/OFCharacterSetTests.m to tests/OFCharacterSetTests.m.

Name change from new_tests/OFColorTests.m to tests/OFColorTests.m.

Name change from new_tests/OFConcreteArrayTests.m to tests/OFConcreteArrayTests.m.

Name change from new_tests/OFConcreteDictionaryTests.m to tests/OFConcreteDictionaryTests.m.

Name change from new_tests/OFConcreteMutableArrayTests.m to tests/OFConcreteMutableArrayTests.m.

Name change from new_tests/OFConcreteMutableDictionaryTests.m to tests/OFConcreteMutableDictionaryTests.m.

Name change from new_tests/OFConcreteMutableSetTests.m to tests/OFConcreteMutableSetTests.m.

Name change from new_tests/OFConcreteSetTests.m to tests/OFConcreteSetTests.m.

Name change from new_tests/OFCryptographicHashTests.m to tests/OFCryptographicHashTests.m.

Name change from new_tests/OFDDPSocketTests.m to tests/OFDDPSocketTests.m.

Name change from new_tests/OFDNSResolverTests.m to tests/OFDNSResolverTests.m.

Name change from new_tests/OFDataTests.h to tests/OFDataTests.h.

Name change from new_tests/OFDataTests.m to tests/OFDataTests.m.

Name change from new_tests/OFDateTests.m to tests/OFDateTests.m.

Name change from new_tests/OFDictionaryTests.h to tests/OFDictionaryTests.h.

Name change from new_tests/OFDictionaryTests.m to tests/OFDictionaryTests.m.

Name change from new_tests/OFHMACTests.m to tests/OFHMACTests.m.

Name change from new_tests/OFHTTPClientTests.m to tests/OFHTTPClientTests.m.

Name change from new_tests/OFHTTPCookieManagerTests.m to tests/OFHTTPCookieManagerTests.m.

Name change from new_tests/OFHTTPCookieTests.m to tests/OFHTTPCookieTests.m.

Name change from new_tests/OFINIFileTests.m to tests/OFINIFileTests.m.

Name change from new_tests/OFIPXSocketTests.m to tests/OFIPXSocketTests.m.

Name change from new_tests/OFIRITests.m to tests/OFIRITests.m.

Name change from new_tests/OFInvocationTests.m to tests/OFInvocationTests.m.

Name change from new_tests/OFJSONTests.m to tests/OFJSONTests.m.

Name change from new_tests/OFKernelEventObserverTests.m to tests/OFKernelEventObserverTests.m.

Name change from new_tests/OFListTests.m to tests/OFListTests.m.

Name change from new_tests/OFLocaleTests.m to tests/OFLocaleTests.m.

Name change from new_tests/OFMatrix4x4Tests.m to tests/OFMatrix4x4Tests.m.

Name change from new_tests/OFMemoryStreamTests.m to tests/OFMemoryStreamTests.m.

Name change from new_tests/OFMethodSignatureTests.m to tests/OFMethodSignatureTests.m.

Name change from new_tests/OFMutableArrayTests.h to tests/OFMutableArrayTests.h.

Name change from new_tests/OFMutableArrayTests.m to tests/OFMutableArrayTests.m.

Name change from new_tests/OFMutableDataTests.m to tests/OFMutableDataTests.m.

Name change from new_tests/OFMutableDictionaryTests.h to tests/OFMutableDictionaryTests.h.

Name change from new_tests/OFMutableDictionaryTests.m to tests/OFMutableDictionaryTests.m.

Name change from new_tests/OFMutableSetTests.h to tests/OFMutableSetTests.h.

Name change from new_tests/OFMutableSetTests.m to tests/OFMutableSetTests.m.

Name change from new_tests/OFMutableStringTests.h to tests/OFMutableStringTests.h.

Name change from new_tests/OFMutableStringTests.m to tests/OFMutableStringTests.m.

Name change from new_tests/OFMutableUTF8StringTests.m to tests/OFMutableUTF8StringTests.m.

Name change from new_tests/OFNotificationCenterTests.m to tests/OFNotificationCenterTests.m.

Name change from new_tests/OFNumberTests.m to tests/OFNumberTests.m.

Name change from new_tests/OFObjectTests.m to tests/OFObjectTests.m.

Name change from new_tests/OFPBKDF2Tests.m to tests/OFPBKDF2Tests.m.

Name change from new_tests/OFPluginTests.m to tests/OFPluginTests.m.

Name change from new_tests/OFPropertyListTests.m to tests/OFPropertyListTests.m.

Name change from new_tests/OFSPXSocketTests.m to tests/OFSPXSocketTests.m.

Name change from new_tests/OFSPXStreamSocketTests.m to tests/OFSPXStreamSocketTests.m.

Name change from new_tests/OFScryptTests.m to tests/OFScryptTests.m.

Name change from new_tests/OFSetTests.h to tests/OFSetTests.h.

Name change from new_tests/OFSetTests.m to tests/OFSetTests.m.

Name change from new_tests/OFSocketTests.m to tests/OFSocketTests.m.

Name change from new_tests/OFStreamTests.m to tests/OFStreamTests.m.

Name change from new_tests/OFStringTests.h to tests/OFStringTests.h.

Name change from new_tests/OFStringTests.m to tests/OFStringTests.m.

Name change from new_tests/OFSubprocessTests.m to tests/OFSubprocessTests.m.

Name change from new_tests/OFSystemInfoTests.m to tests/OFSystemInfoTests.m.

Name change from new_tests/OFTCPSocketTests.m to tests/OFTCPSocketTests.m.

Name change from new_tests/OFThreadTests.m to tests/OFThreadTests.m.

Name change from new_tests/OFUDPSocketTests.m to tests/OFUDPSocketTests.m.

Name change from new_tests/OFUNIXDatagramSocketTests.m to tests/OFUNIXDatagramSocketTests.m.

Name change from new_tests/OFUNIXStreamSocketTests.m to tests/OFUNIXStreamSocketTests.m.

Name change from new_tests/OFUTF8StringTests.m to tests/OFUTF8StringTests.m.

Name change from new_tests/OFValueTests.m to tests/OFValueTests.m.

Name change from new_tests/OFWindowsRegistryKeyTests.m to tests/OFWindowsRegistryKeyTests.m.

Name change from new_tests/OFXMLElementBuilderTests.m to tests/OFXMLElementBuilderTests.m.

Name change from new_tests/OFXMLNodeTests.m to tests/OFXMLNodeTests.m.

Name change from new_tests/OFXMLParserTests.m to tests/OFXMLParserTests.m.

Name change from new_tests/RuntimeARCTests.m to tests/RuntimeARCTests.m.

Name change from new_tests/RuntimeTests.m to tests/RuntimeTests.m.

Name change from new_tests/plugin/Info.plist.in to tests/plugin/Info.plist.in.

Name change from new_tests/plugin/Makefile to tests/plugin/Makefile.

Name change from new_tests/plugin/TestPlugin.h to tests/plugin/TestPlugin.h.

Name change from new_tests/plugin/TestPlugin.m to tests/plugin/TestPlugin.m.

Name change from new_tests/subprocess/Makefile to tests/subprocess/Makefile.

Name change from new_tests/subprocess/Subprocess.m to tests/subprocess/Subprocess.m.

Name change from new_tests/testfile.bin to tests/testfile.bin.

cannot compute difference between binary files

Name change from new_tests/testfile.ini to tests/testfile.ini.

Name change from new_tests/testfile.txt to tests/testfile.txt.