Overview
Comment: | Migrate OFTCPSocketTests to ObjFWTest |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | objfwtest |
Files: | files | file ages | folders |
SHA3-256: |
d3b3fd8845befe0f3a0fc839debb9ca3 |
User & Date: | js on 2024-02-13 23:02:02 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-13
| ||
23:12 | Migrate OFUDPSocketTests to ObjFWTest check-in: 4e06901c84 user: js tags: objfwtest | |
23:02 | Migrate OFTCPSocketTests to ObjFWTest check-in: d3b3fd8845 user: js tags: objfwtest | |
22:49 | OTOrderedDictionary: Remove debug statement check-in: 251b8a6c5f user: js tags: objfwtest | |
Changes
Modified new_tests/Makefile from [fedbcb8a8a] to [39562aeab7].
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | - + + | ${USE_SRCS_SOCKETS} \ ${USE_SRCS_SUBPROCESSES} \ ${USE_SRCS_THREADS} \ testfile_bin.m \ testfile_ini.m SRCS_PLUGINS = OFPluginTests.m SRCS_SOCKETS = OFDNSResolverTests.m \ |
︙ |
Renamed and modified tests/OFTCPSocketTests.m [4cfbc85ac3] to new_tests/OFTCPSocketTests.m [5aca96f5ad].
︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | - + + - + + - - + + - - + - - + + - - + - - + - - - + + - + - - - - + + - + - - - + + - - | * file. */ #include "config.h" #include <string.h> |
Modified tests/Makefile from [f8156751e7] to [04f2449df8].
︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - | ${USE_SRCS_FILES} \ ${USE_SRCS_SOCKETS} \ ${USE_SRCS_WINDOWS} SRCS_SOCKETS = ${OF_HTTP_CLIENT_TESTS_M} \ OFHTTPCookieTests.m \ OFHTTPCookieManagerTests.m \ OFKernelEventObserverTests.m \ |
︙ |
Modified tests/TestsAppDelegate.h from [d6a2aa82e5] to [982bac2ab3].
︙ | |||
123 124 125 126 127 128 129 | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | - - - - | - (void)streamTests; @end @interface TestsAppDelegate (OFStringTests) - (void)stringTests; @end |
︙ |
Modified tests/TestsAppDelegate.m from [ee0c79f148] to [9816b74668].
︙ | |||
379 380 381 382 383 384 385 | 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | - | [self dictionaryTests]; [self listTests]; [self valueTests]; [self streamTests]; [self memoryStreamTests]; [self notificationCenterTests]; #ifdef OF_HAVE_SOCKETS |
︙ |