Overview
| Comment: | tests: Remove dependency on files for a few tests |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
71d2ab694e343bfe940bd3d664f515ac |
| User & Date: | js on 2022-08-01 21:25:09 |
| Other Links: | manifest | tags |
Context
|
2022-08-01
| ||
| 23:39 | OFEmbeddedFileURLHandler: Fix missing include (check-in: ce151e34d0 user: js tags: trunk) | |
| 21:25 | tests: Remove dependency on files for a few tests (check-in: 71d2ab694e user: js tags: trunk) | |
| 21:20 | Add support for embedding files into binaries (check-in: 1483709ab2 user: js tags: trunk) | |
Changes
Modified tests/Makefile from [a81e7d8878] to [26d119d41a].
| ︙ | ︙ | |||
18 19 20 21 22 23 24 25 26 27 28 |
SRCS = ForwardingTests.m \
OFArrayTests.m \
${OF_BLOCK_TESTS_M} \
OFCharacterSetTests.m \
OFDataTests.m \
OFDateTests.m \
OFDictionaryTests.m \
OFInvocationTests.m \
OFJSONTests.m \
OFListTests.m \
OFLocaleTests.m \
| > | > > > > > > > > | < < < < < < < < < | 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
SRCS = ForwardingTests.m \
OFArrayTests.m \
${OF_BLOCK_TESTS_M} \
OFCharacterSetTests.m \
OFDataTests.m \
OFDateTests.m \
OFDictionaryTests.m \
OFHMACTests.m \
OFInvocationTests.m \
OFJSONTests.m \
OFListTests.m \
OFLocaleTests.m \
OFMD5HashTests.m \
OFMemoryStreamTests.m \
OFMethodSignatureTests.m \
OFNotificationCenterTests.m \
OFNumberTests.m \
OFObjectTests.m \
OFPBKDF2Tests.m \
OFPropertyListTests.m \
OFRIPEMD160HashTests.m \
OFSHA1HashTests.m \
OFSHA224HashTests.m \
OFSHA256HashTests.m \
OFSHA384HashTests.m \
OFSHA512HashTests.m \
OFScryptTests.m \
OFSerializationTests.m \
OFSetTests.m \
OFStreamTests.m \
OFStringTests.m \
OFSystemInfoTests.m \
OFURLTests.m \
OFValueTests.m \
OFXMLElementBuilderTests.m \
OFXMLNodeTests.m \
OFXMLParserTests.m \
RuntimeTests.m \
${RUNTIME_ARC_TESTS_M} \
TestsAppDelegate.m \
${USE_SRCS_FILES} \
${USE_SRCS_PLUGINS} \
${USE_SRCS_SOCKETS} \
${USE_SRCS_THREADS} \
${USE_SRCS_WINDOWS} \
serialization_xml.m \
testfile_bin.m
SRCS_FILES = OFINIFileTests.m
SRCS_PLUGINS = OFPluginTests.m
SRCS_SOCKETS = OFDNSResolverTests.m \
${OF_HTTP_CLIENT_TESTS_M} \
OFHTTPCookieTests.m \
OFHTTPCookieManagerTests.m \
OFKernelEventObserverTests.m \
OFSocketTests.m \
|
| ︙ | ︙ |