builtin-test.c (f215054d749b17c56e014fdca2fcc592dac4529c) | builtin-test.c (69b352927885b17f03d3ee4ee38f580699af107a) |
---|---|
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> --- 106 unchanged lines hidden (view full) --- 115 116static struct test_suite **tests[] = { 117 generic_tests, 118 arch_tests, 119}; 120 121static struct test_workload *workloads[] = { 122 &workload__noploop, | 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> --- 106 unchanged lines hidden (view full) --- 115 116static struct test_suite **tests[] = { 117 generic_tests, 118 arch_tests, 119}; 120 121static struct test_workload *workloads[] = { 122 &workload__noploop, |
123 &workload__thloop, |
|
123}; 124 125static int num_subtests(const struct test_suite *t) 126{ 127 int num; 128 129 if (!t->test_cases) 130 return 0; --- 417 unchanged lines hidden --- | 124}; 125 126static int num_subtests(const struct test_suite *t) 127{ 128 int num; 129 130 if (!t->test_cases) 131 return 0; --- 417 unchanged lines hidden --- |