builtin-test.c (a104f0ea99d846df19aad8a5476eb9bc39fa42ca) builtin-test.c (3dfc01fe9d12a1e832f49deab37279faa8a9ebc8)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * builtin-test.c
4 *
5 * Builtin regression testing command: ever growing number of sanity tests
6 */
7#include <fcntl.h>
8#include <errno.h>

--- 110 unchanged lines hidden (view full) ---

119};
120
121static struct test_workload *workloads[] = {
122 &workload__noploop,
123 &workload__thloop,
124 &workload__leafloop,
125 &workload__sqrtloop,
126 &workload__brstack,
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * builtin-test.c
4 *
5 * Builtin regression testing command: ever growing number of sanity tests
6 */
7#include <fcntl.h>
8#include <errno.h>

--- 110 unchanged lines hidden (view full) ---

119};
120
121static struct test_workload *workloads[] = {
122 &workload__noploop,
123 &workload__thloop,
124 &workload__leafloop,
125 &workload__sqrtloop,
126 &workload__brstack,
127 &workload__datasym,
127};
128
129static int num_subtests(const struct test_suite *t)
130{
131 int num;
132
133 if (!t->test_cases)
134 return 0;

--- 417 unchanged lines hidden ---
128};
129
130static int num_subtests(const struct test_suite *t)
131{
132 int num;
133
134 if (!t->test_cases)
135 return 0;

--- 417 unchanged lines hidden ---