blob: d65a32179ce10839a604eaad616a3d2c13e8a272 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Joe Hershberger421f86f2015-05-20 14:27:36 -05002/*
3 * (C) Copyright 2015
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
Joe Hershberger421f86f2015-05-20 14:27:36 -05005 */
6
7#include <common.h>
8#include <command.h>
9#include <test/env.h>
10#include <test/suites.h>
11#include <test/ut.h>
12
Simon Glass09140112020-05-10 11:40:03 -060013int do_ut_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershberger421f86f2015-05-20 14:27:36 -050014{
Simon Glassa7a98752021-03-07 17:35:10 -070015 struct unit_test *tests = UNIT_TEST_SUITE_START(env_test);
16 const int n_ents = UNIT_TEST_SUITE_COUNT(env_test);
Joe Hershberger421f86f2015-05-20 14:27:36 -050017
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010018 return cmd_ut_category("environment", "env_test_",
19 tests, n_ents, argc, argv);
Joe Hershberger421f86f2015-05-20 14:27:36 -050020}