aboutsummaryrefslogtreecommitdiff
path: root/tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Do not install test filevariousimprovements2025Pali Rohár2025-04-281-2/+0
|
* Fix test compile error C2065: 'errno' : undeclared identifierPali Rohár2025-04-281-0/+1
| | | | | For errno usage it is required to include C header file errno.h and do not depend that some other header file will include it.
* Add proper guards for platform codePali Rohár2025-04-281-2/+7
| | | | | | | | | Do not expect that non-ARM code is automatically X86 code as it does not have to be. Returns failure (not thunk) in other case. Make sure that windows test code is not called on non-windows platforms. Test code tests/test-dladdr.c is written to be validated on any platforms, including non-windows.
* Add Windows ARM64 supportGH Cao2022-12-271-0/+9
|
* cmake: use CROSSCOMPILING_EMULATORMichel Zou2021-04-271-6/+2
|
* Fix some style issuesPali Rohár2021-02-031-4/+4
|
* Function dladdr() now retrieve symbol name and symbol address from both ↵Pali Rohár2021-01-272-15/+15
| | | | | | export and import tables dladdr tests for Windows now should always pass like on other systems.
* cmake: add support to build test-dladdr on unix like osRalf Habacker2021-01-171-11/+19
| | | | This is used to obtain test result references.
* Add function dladdr() and associated test application test-dladdrRalf Habacker2021-01-172-0/+192
|
* Add _CRT_SECURE_NO_WARNINGS for test.c to disable MSVC deprecation warningsPali Rohár2020-12-131-0/+1
|
* cmake: add option ENABLE_WINE to enable support for running cross compiled ↵Ralf Habacker2020-11-091-1/+3
| | | | | | | | | | | | | tests with wine For details about the ENABLE_WINE option, which support three modes AUTO|ON|OFF see the documentation of cmake macro check_auto_option(). A custom path for the wine executable can be specified by adding -DWINE_EXECUTABLE=<path> to the cmake command line. The cmake related macros were copied from https://gitlab.freedesktop.org/dbus/dbus/-/blob/master/cmake/modules/Macros.cmake
* cmake: separate targets in tests subdir for reasier readingRalf Habacker2020-11-091-0/+4
|
* cmake: Let make target 'test' be accessable from topmost build directoryRalf Habacker2020-11-091-1/+0
| | | | | | The cmake command enable_testing() must be placed in the topmost CMakeLists.txt so that the make target 'test' is available in the topmost build directory.
* cmake: place all generated binaries into one placeRalf Habacker2020-11-021-1/+1
| | | | | This is required for running test applications, because by default cmake places binaries into the associated subdir.
* Move cmake targets into sub directoriesRalf Habacker2020-09-145-0/+847