2022-08-05 12:55:59 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-01-19 16:13:05 +00:00
|
|
|
#
|
|
|
|
# Copyright 2018 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.
|
|
|
|
|
|
|
|
|
2020-06-23 21:40:47 +00:00
|
|
|
from __future__ import absolute_import
|
2018-01-19 16:13:05 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
from testrunner import num_fuzzer
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(num_fuzzer.NumFuzzer().execute())
|