summaryrefslogtreecommitdiff
path: root/deps/v8/tools/run-gc-fuzzer.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/run-gc-fuzzer.py')
-rwxr-xr-xdeps/v8/tools/run-gc-fuzzer.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/v8/tools/run-gc-fuzzer.py b/deps/v8/tools/run-gc-fuzzer.py
new file mode 100755
index 0000000000..6311d4fd29
--- /dev/null
+++ b/deps/v8/tools/run-gc-fuzzer.py
@@ -0,0 +1,14 @@
+#!/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())