2022-08-05 12:55:59 +00:00
|
|
|
#!/usr/bin/env python3
|
2012-09-24 09:38:46 +00:00
|
|
|
#
|
2017-10-13 08:13:39 +00:00
|
|
|
# Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
|
2020-06-23 21:40:47 +00:00
|
|
|
from __future__ import absolute_import
|
2012-09-24 09:38:46 +00:00
|
|
|
import sys
|
2016-03-09 08:46:53 +00:00
|
|
|
|
2017-10-13 08:13:39 +00:00
|
|
|
from testrunner import standard_runner
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2017-10-13 08:13:39 +00:00
|
|
|
sys.exit(standard_runner.StandardTestRunner().execute())
|