1#!/usr/bin/env python3 2# 3# Copyright 2025 The Hafnium Authors. 4# 5# Use of this source code is governed by a BSD-style 6# license that can be found in the LICENSE file or at 7# https://opensource.org/licenses/BSD-3-Clause. 8 9"""Script which drives invocation of tests and parsing their output to produce 10a results report. 11""" 12 13import click 14import sys 15 16from fvp_driver import FvpDriver 17from qemu_driver import QemuDriver 18 19@click.group() 20def hftest(): 21 pass 22 23hftest.add_command(FvpDriver.fvp) 24hftest.add_command(QemuDriver.qemu) 25 26if __name__ == "__main__": 27 sys.exit(hftest()) 28