summaryrefslogtreecommitdiff
path: root/zephyr/test/system_shim/include/fakes.h
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/system_shim/include/fakes.h')
-rw-r--r--zephyr/test/system_shim/include/fakes.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/zephyr/test/system_shim/include/fakes.h b/zephyr/test/system_shim/include/fakes.h
deleted file mode 100644
index 29031a10b7..0000000000
--- a/zephyr/test/system_shim/include/fakes.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Copyright 2022 The ChromiumOS Authors
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef ZEPHYR_TEST_SYSTEM_SHIM_INCLUDE_FAKES_H_
-#define ZEPHYR_TEST_SYSTEM_SHIM_INCLUDE_FAKES_H_
-
-#include <stdint.h>
-
-#include <zephyr/fff.h>
-
-DECLARE_FAKE_VALUE_FUNC(int, cros_system_native_posix_get_reset_cause,
- const struct device *);
-DECLARE_FAKE_VALUE_FUNC(uint64_t, cros_system_native_posix_deep_sleep_ticks,
- const struct device *);
-DECLARE_FAKE_VALUE_FUNC(int, cros_system_native_posix_hibernate,
- const struct device *, uint32_t, uint32_t);
-DECLARE_FAKE_VALUE_FUNC(const char *, cros_system_native_posix_get_chip_vendor,
- const struct device *);
-DECLARE_FAKE_VALUE_FUNC(const char *, cros_system_native_posix_get_chip_name,
- const struct device *);
-DECLARE_FAKE_VALUE_FUNC(const char *,
- cros_system_native_posix_get_chip_revision,
- const struct device *);
-DECLARE_FAKE_VALUE_FUNC(int, cros_system_native_posix_soc_reset,
- const struct device *);
-DECLARE_FAKE_VOID_FUNC(watchdog_reload);
-DECLARE_FAKE_VOID_FUNC(board_hibernate);
-
-#endif /* ZEPHYR_TEST_SYSTEM_SHIM_INCLUDE_FAKES_H_ */