• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python3
2# Copyright 2022 The ChromiumOS Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6from impl.testvm import main
7import sys
8
9if __name__ == "__main__":
10    main("x86_64", sys.argv[1:])
11