mirror of
https://git.proxmox.com/git/fwupd
synced 2025-11-07 02:12:58 +00:00
18 lines
432 B
C
18 lines
432 B
C
/*
|
|
* Copyright (C) 2010-2011 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
gchar *fu_test_get_filename (const gchar *testdatadirs,
|
|
const gchar *filename);
|
|
void fu_test_loop_run_with_timeout (guint timeout_ms);
|
|
void fu_test_loop_quit (void);
|
|
gboolean fu_test_compare_lines (const gchar *txt1,
|
|
const gchar *txt2,
|
|
GError **error);
|