blob: 3670cafb8de366752d0152baaccbd2fbf933dbe6 [file] [log] [blame]
Jeremy Morse984fad22019-10-31 16:51:53 +00001#!/usr/bin/python
2# DExTer : Debugging Experience Tester
3# ~~~~~~ ~ ~~ ~ ~~
4#
5# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6# See https://llvm.org/LICENSE.txt for license information.
7# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8"""DExTer entry point. This is the only non-module file."""
9
10import sys
11
12from dex.tools import main
13
14if __name__ == '__main__':
15 return_code = main()
16 sys.exit(return_code.value)