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

Unified Diff: testing/scripts/kasko_integration_tests.py

Issue 2621363002: Remove Kasko! (Closed)
Patch Set: 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
Index: testing/scripts/kasko_integration_tests.py
diff --git a/testing/scripts/kasko_integration_tests.py b/testing/scripts/kasko_integration_tests.py
deleted file mode 100755
index 1be0474855f9e134177a2599730b0f945188f0cc..0000000000000000000000000000000000000000
--- a/testing/scripts/kasko_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 Kasko integration tests."""
-
-
-import json
-import os
-import sys
-
-
-import common
-
-
-# Bring in the Kasko test modules.
-KASKO_TEST_DIR = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir,
- 'chrome', 'test', 'kasko')
-KASKO_INTEGRATION_TEST = os.path.join(KASKO_TEST_DIR,
- 'kasko_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:
- kasko_integration_test_res = common.run_integration_test(
- KASKO_INTEGRATION_TEST,
- ['--log-to-json', tempfile_path],
- tempfile_path, args.output)
-
- return kasko_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))

Powered by Google App Engine
This is Rietveld 408576698