summaryrefslogtreecommitdiffstats
path: root/tests/lifecycle.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lifecycle.h')
-rw-r--r--tests/lifecycle.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/lifecycle.h b/tests/lifecycle.h
new file mode 100644
index 000000000..074433e9f
--- /dev/null
+++ b/tests/lifecycle.h
@@ -0,0 +1,32 @@
+/*
+ * This file is part of the flashrom project.
+ *
+ * Copyright 2021 Google LLC
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __LIFECYCLE_H__
+#define __LIFECYCLE_H__
+
+#include <include/test.h>
+#include <string.h>
+#include <linux/spi/spidev.h>
+
+#include "tests.h"
+#include "libflashrom.h"
+#include "io_mock.h"
+#include "programmer.h"
+#include "spi.h"
+
+#define SKIP_TEST(name) \
+ void name (void **state) { skip(); }
+
+#endif /* __LIFECYCLE_H__ */