Commit 1e3a8c15 authored by Michal Majewski's avatar Michal Majewski Committed by Commit Bot

[test] Remove old gc and deopt fuzzers

They have been replaced with num_fuzzer.

Bug: v8:6917
Change-Id: I2f78df308cec0a58f0d665bce82503dee68fcebc
Reviewed-on: https://chromium-review.googlesource.com/888641Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Michał Majewski <majeski@google.com>
Cr-Commit-Position: refs/heads/master@{#50903}
parent 8e7527aa
#!/usr/bin/env python
#
# 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.
import sys
from testrunner import deopt_fuzzer
if __name__ == "__main__":
sys.exit(deopt_fuzzer.DeoptFuzzer().execute())
#!/usr/bin/env python
#
# 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.
import sys
from testrunner import gc_fuzzer
if __name__ == "__main__":
sys.exit(gc_fuzzer.GCFuzzer().execute())
......@@ -4,11 +4,9 @@
{
'variables': {
'command': [
'run-deopt-fuzzer.py',
'run-num-fuzzer.py',
],
'files': [
'run-deopt-fuzzer.py',
'run-gc-fuzzer.py',
'run-num-fuzzer.py',
],
},
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment