Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: testing/scripts/syzyasan_integration_tests.py

Issue 2621363002: Remove Kasko! (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/scripts/kasko_integration_tests.py ('k') | third_party/kasko/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/syzyasan_integration_tests.py
diff --git a/testing/scripts/syzyasan_integration_tests.py b/testing/scripts/syzyasan_integration_tests.py
deleted file mode 100755
index 5d6d84725296ee0d03c21d3fedc3d5e7681d0d5f..0000000000000000000000000000000000000000
--- a/testing/scripts/syzyasan_integration_tests.py
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Wrapper for the SyzyAsan integration tests."""
-
-
-import json
-import os
-import sys
-
-
-import common
-
-
-# Bring in the SyzyAsan test modules.
-SYZYASAN_TEST_DIR = os.path.join(os.path.dirname(__file__), os.pardir,
- os.pardir, 'chrome', 'test', 'kasko')
-SYZYASAN_INTEGRATION_TEST = os.path.join(SYZYASAN_TEST_DIR,
- 'syzyasan_integration_test.py')
-
-
-def main_run(args):
- if not sys.platform.startswith('win'):
- json.dump({
- 'valid': False,
- 'failures': ['This script should only be called on win32.'],
- }, args.output)
-
- with common.temporary_file() as tempfile_path:
- syzyasan_integration_test_res = common.run_integration_test(
- SYZYASAN_INTEGRATION_TEST,
- ['--log-to-json', tempfile_path],
- tempfile_path, args.output)
-
- return syzyasan_integration_test_res
-
-
-def main_compile_targets(args):
- json.dump(['chrome', 'chromedriver'], args.output)
-
-
-if __name__ == '__main__':
- funcs = {
- 'run': main_run,
- 'compile_targets': main_compile_targets,
- }
- sys.exit(common.run_script(sys.argv[1:], funcs))
« no previous file with comments | « testing/scripts/kasko_integration_tests.py ('k') | third_party/kasko/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698