diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-05-20 14:27:28 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-05-21 09:16:17 -0400 |
commit | c617ede08ad0583e0e015e76ebda2c5d2f6b5854 (patch) | |
tree | 77b48705304a154a75924eddd9764a8505b2f7e6 /include/test/suites.h | |
parent | e721b882e9daf3ad3599eef5a9ccf3847b694228 (diff) |
test: Add a common unit test command
Add a command that all other unit tests should be a sub-command of.
Also include a command that will run all tests.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test/suites.h')
-rw-r--r-- | include/test/suites.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/test/suites.h b/include/test/suites.h new file mode 100644 index 00000000000..eae132ec2ff --- /dev/null +++ b/include/test/suites.h @@ -0,0 +1,11 @@ +/* + * (C) Copyright 2015 + * Joe Hershberger, National Instruments, joe.hershberger@ni.com + * + * SPDX-License-Identifier: GPL-2.0 + */ + +#ifndef __TEST_SUITES_H__ +#define __TEST_SUITES_H__ + +#endif /* __TEST_SUITES_H__ */ |