tests.h (41522f7442905814c654dbe2ca7b8d3605c7e0cc) | tests.h (39281709a6e2301ac4c6ac7015c7793392ca2dfe) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef TESTS_H 3#define TESTS_H 4 5#include <stdbool.h> 6 7#define TEST_ASSERT_VAL(text, cond) \ 8do { \ --- 189 unchanged lines hidden (view full) --- 198 .name = #work, \ 199 .func = work, \ 200} 201 202/* The list of test workloads */ 203DECLARE_WORKLOAD(noploop); 204DECLARE_WORKLOAD(thloop); 205DECLARE_WORKLOAD(leafloop); | 1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef TESTS_H 3#define TESTS_H 4 5#include <stdbool.h> 6 7#define TEST_ASSERT_VAL(text, cond) \ 8do { \ --- 189 unchanged lines hidden (view full) --- 198 .name = #work, \ 199 .func = work, \ 200} 201 202/* The list of test workloads */ 203DECLARE_WORKLOAD(noploop); 204DECLARE_WORKLOAD(thloop); 205DECLARE_WORKLOAD(leafloop); |
206DECLARE_WORKLOAD(sqrtloop); |
|
206 207#endif /* TESTS_H */ | 207 208#endif /* TESTS_H */ |