kunit.py (a48ad6e7a35dc3f3b521249204daf4c9427628e5) | kunit.py (df4b0807ca1a62822342d404b863eff933d15762) |
---|---|
1#!/usr/bin/env python3 2# SPDX-License-Identifier: GPL-2.0 3# 4# A thin wrapper on top of the KUnit Kernel 5# 6# Copyright (C) 2019, Google LLC. 7# Author: Felix Guo <felixguoxiuping@gmail.com> 8# Author: Brendan Higgins <brendanhiggins@google.com> 9 10import argparse 11import sys 12import os 13import time 14 | 1#!/usr/bin/env python3 2# SPDX-License-Identifier: GPL-2.0 3# 4# A thin wrapper on top of the KUnit Kernel 5# 6# Copyright (C) 2019, Google LLC. 7# Author: Felix Guo <felixguoxiuping@gmail.com> 8# Author: Brendan Higgins <brendanhiggins@google.com> 9 10import argparse 11import sys 12import os 13import time 14 |
15assert sys.version_info >= (3, 7), "Python version is too old" 16 |
|
15from collections import namedtuple 16from enum import Enum, auto 17 18import kunit_config 19import kunit_json 20import kunit_kernel 21import kunit_parser 22 --- 371 unchanged lines hidden --- | 17from collections import namedtuple 18from enum import Enum, auto 19 20import kunit_config 21import kunit_json 22import kunit_kernel 23import kunit_parser 24 --- 371 unchanged lines hidden --- |