authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-24 04:35:54+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-12-13 03:13:14+01:00
logdf27298aeffa0621f9b899b1a1855098bd8f550f
tree4e04720b746d730dd3754831e5f82f7b738831f5
parent1e61399537999531d2bdb9bc9c2ff51aecbbedf8
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Add armeb-linux-* to the module test matrix.


1 files changed, 47 insertions(+), 0 deletions(-)

test/tests.zig+47
......@@ -354,6 +354,53 @@ const test_targets = blk: {
354354 .link_libc = true,
355355 },
356356
357 .{
358 .target = .{
359 .cpu_arch = .armeb,
360 .os_tag = .linux,
361 .abi = .eabi,
362 },
363 },
364 .{
365 .target = .{
366 .cpu_arch = .armeb,
367 .os_tag = .linux,
368 .abi = .eabihf,
369 },
370 },
371 .{
372 .target = .{
373 .cpu_arch = .armeb,
374 .os_tag = .linux,
375 .abi = .musleabi,
376 },
377 .link_libc = true,
378 },
379 .{
380 .target = .{
381 .cpu_arch = .armeb,
382 .os_tag = .linux,
383 .abi = .musleabihf,
384 },
385 .link_libc = true,
386 },
387 .{
388 .target = .{
389 .cpu_arch = .armeb,
390 .os_tag = .linux,
391 .abi = .gnueabi,
392 },
393 .link_libc = true,
394 },
395 .{
396 .target = .{
397 .cpu_arch = .armeb,
398 .os_tag = .linux,
399 .abi = .gnueabihf,
400 },
401 .link_libc = true,
402 },
403
357404 .{
358405 .target = .{
359406 .cpu_arch = .thumb,