2013-07-24 12:04:29 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
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.
|
2013-07-24 12:04:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2017-10-13 08:13:39 +00:00
|
|
|
from testrunner import deopt_fuzzer
|
2013-07-24 12:04:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2017-10-13 08:13:39 +00:00
|
|
|
sys.exit(deopt_fuzzer.DeoptFuzzer().execute())
|