Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-03 | build: move plugins directory to src/plugins | Aleksander Morgado | |
We are going to allow including the plugin sources built within the ModemManager daemon binary; moving the sources within the daemon sources directory makes it easier. | |||
2020-05-19 | plugins,tests: avoid cast-align errors | Aleksander Morgado | |
We can safely cast the data in a GArray to gpointer first, and then to the pointer type we require. tests/test-helpers.c: In function 'mm_test_helpers_compare_bands': tests/test-helpers.c:41:47: error: cast increases required alignment of target type [-Werror=cast-align] bands_str = mm_common_build_bands_string ((MMModemBand *)(bands->data), bands->len); ^ tests/test-helpers.c:46:56: error: cast increases required alignment of target type [-Werror=cast-align] expected_bands_str = mm_common_build_bands_string ((MMModemBand *)(expected_bands_array->data), expected_bands_array->len); ^ | |||
2019-10-14 | tests,helpers: minor alignment fix | Aleksander Morgado | |
2019-09-09 | plugins,tests: setup new helper utilities for tests | Aleksander Morgado | |
For now, including a handy method from the ublox tests that allows comparing arrays of bands that may not be sorted. |