f31522130f
Build system (5 gaps hardened): - COOKBOOK_OFFLINE defaults to true (fork-mode) - normalize_patch handles diff -ruN format - New 'repo validate-patches' command (25/25 relibc patches) - 14 patched Qt/Wayland/display recipes added to protected list - relibc archive regenerated with current patch chain Boot fixes (fixable): - Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset) - D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped) - redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped) - daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch) - udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async) - relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs - greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait) - greeter-ui: built and linked (header guard unification, sem_compat stubs removed) - mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps - greeter config: removed stale keymapd dependency from display/greeter services - prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified Unfixable (diagnosed, upstream): - i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort - kded6/greeter-ui: page fault 0x8 — Qt library null deref - Thread panics fd != -1 — Rust std library on Redox - DHCP timeout / eth0 MAC — QEMU user-mode networking - hwrngd/thermald — no hardware RNG/thermal in VM - live preload allocation — BIOS memory fragmentation, continues on demand
94 lines
2.3 KiB
C
94 lines
2.3 KiB
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* Copyright © 2013 Red Hat, Inc.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <libevdev/libevdev.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
|
|
#include <check.h>
|
|
|
|
#ifndef _TEST_COMMON_H_
|
|
#define _TEST_COMMON_H_
|
|
|
|
struct libevdev_test {
|
|
const char *name;
|
|
Suite* (*setup)(void);
|
|
bool needs_root_privileges;
|
|
} __attribute__((aligned(16)));
|
|
|
|
#define _TEST_SUITE(name, root_privs) \
|
|
static Suite* (name##_setup)(void); \
|
|
static const struct libevdev_test _test \
|
|
__attribute__((used)) \
|
|
__attribute__((section ("test_section"))) = { \
|
|
#name, name##_setup, root_privs \
|
|
}; \
|
|
static Suite* (name##_setup)(void)
|
|
|
|
#define TEST_SUITE(name) \
|
|
_TEST_SUITE(name, false)
|
|
|
|
#define TEST_SUITE_ROOT_PRIVILEGES(name) \
|
|
_TEST_SUITE(name, true)
|
|
|
|
#define TEST_DEVICE_NAME "libevdev test device"
|
|
|
|
#define add_test(suite, func) do { \
|
|
TCase *tc = tcase_create(#func); \
|
|
tcase_add_test(tc, func); \
|
|
suite_add_tcase(suite, tc); \
|
|
} while(0)
|
|
|
|
#include "test-common-uinput.h"
|
|
|
|
#define assert_event(e_, t, c, v) \
|
|
do { \
|
|
const struct input_event *e = (e_); \
|
|
ck_assert_int_eq(e->type, (t)); \
|
|
ck_assert_int_eq(e->code, (c)); \
|
|
ck_assert_int_eq(e->value, (v)); \
|
|
} while(0)
|
|
|
|
void test_create_device(struct uinput_device **uidev,
|
|
struct libevdev **dev,
|
|
...);
|
|
void test_create_abs_device(struct uinput_device **uidev,
|
|
struct libevdev **dev,
|
|
int nabs,
|
|
const struct input_absinfo *abs,
|
|
...);
|
|
|
|
void test_logfunc_abort_on_error(enum libevdev_log_priority priority,
|
|
void *data,
|
|
const char *file, int line,
|
|
const char *func,
|
|
const char *format, va_list args);
|
|
void test_logfunc_ignore_error(enum libevdev_log_priority priority,
|
|
void *data,
|
|
const char *file, int line,
|
|
const char *func,
|
|
const char *format, va_list args);
|
|
|
|
static inline void
|
|
print_event(const struct input_event *ev)
|
|
{
|
|
if (ev->type == EV_SYN)
|
|
printf("Event: time %ld.%06ld, ++++++++++++++++++++ %s +++++++++++++++\n",
|
|
ev->input_event_sec,
|
|
ev->input_event_usec,
|
|
libevdev_event_type_get_name(ev->type));
|
|
else
|
|
printf("Event: time %ld.%06ld, type %d (%s), code %d (%s), value %d\n",
|
|
ev->input_event_sec,
|
|
ev->input_event_usec,
|
|
ev->type,
|
|
libevdev_event_type_get_name(ev->type),
|
|
ev->code,
|
|
libevdev_event_code_get_name(ev->type, ev->code),
|
|
ev->value);
|
|
}
|
|
#endif /* _TEST_COMMON_H_ */
|