builtin-test.c (41522f7442905814c654dbe2ca7b8d3605c7e0cc) builtin-test.c (39281709a6e2301ac4c6ac7015c7793392ca2dfe)
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>

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

117 generic_tests,
118 arch_tests,
119};
120
121static struct test_workload *workloads[] = {
122 &workload__noploop,
123 &workload__thloop,
124 &workload__leafloop,
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>

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

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

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

--- 417 unchanged lines hidden ---