blob: 54041a02197d500109f3c017944c2e4c2984c494 [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
13int do_ut_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
14{
15 struct unit_test *tests = ll_entry_start(struct unit_test, env_test);
16 const int n_ents = ll_entry_count(struct unit_test, env_test);
Joe Hershberger421f86f2015-05-20 14:27:36 -050017
Simon Glass4d869c12017-11-25 11:57:29 -070018 return cmd_ut_category("environment", tests, n_ents, argc, argv);
Joe Hershberger421f86f2015-05-20 14:27:36 -050019}