2021-04-15 10:10:20 +00:00
|
|
|
#!/usr/bin/env python3
|
2017-01-19 18:11:27 +00:00
|
|
|
# Copyright 2017 The Dart 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.
|
|
|
|
|
|
|
|
# This script creates a qemu image manifest for Fuchsia that contains the
|
|
|
|
# Dart tree. In particular in contains Dart's test suite, and test harness.
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import utils
|
|
|
|
|
|
|
|
SCRIPT_DIR = os.path.dirname(sys.argv[0])
|
|
|
|
DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..'))
|
2019-08-05 20:34:31 +00:00
|
|
|
FUCHSIA_ROOT = os.path.realpath(os.path.join(DART_ROOT, '..', '..'))
|
2017-01-19 18:11:27 +00:00
|
|
|
|
|
|
|
FUCHSIA_TEST_MANIFEST_PREFIX = os.path.join('test', 'dart')
|
|
|
|
|
2019-08-05 20:34:31 +00:00
|
|
|
EXCLUDE_DIRS = ['.git', 'out', '.jiri']
|
|
|
|
|
|
|
|
BINARY_FILES = ['dart', 'run_vm_tests', 'process_test']
|
2017-01-19 18:11:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
def parse_args(args):
|
2019-08-05 20:34:31 +00:00
|
|
|
args = args[1:]
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description='A script that generates Dart/Fuchsia test commands.')
|
|
|
|
|
|
|
|
parser.add_argument(
|
|
|
|
'--arch',
|
|
|
|
'-a',
|
|
|
|
type=str,
|
|
|
|
help='Target architectures (comma-separated).',
|
|
|
|
metavar='[x64]',
|
|
|
|
default='x64')
|
|
|
|
parser.add_argument(
|
|
|
|
'--mode',
|
|
|
|
'-m',
|
|
|
|
type=str,
|
|
|
|
help='Build variant',
|
|
|
|
metavar='[debug,release]',
|
|
|
|
default='debug')
|
|
|
|
parser.add_argument(
|
|
|
|
'--output', '-o', type=str, help='Path to output file prefix.')
|
|
|
|
parser.add_argument(
|
|
|
|
"-v",
|
|
|
|
"--verbose",
|
|
|
|
help='Verbose output.',
|
|
|
|
default=False,
|
|
|
|
action="store_true")
|
|
|
|
|
|
|
|
return parser.parse_args(args)
|
2017-01-19 18:11:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
def fuchsia_arch(arch):
|
2019-08-05 20:34:31 +00:00
|
|
|
if arch is 'x64':
|
|
|
|
return 'x86-64'
|
|
|
|
return None
|
2017-01-19 18:11:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main(argv):
|
2019-08-05 20:34:31 +00:00
|
|
|
args = parse_args(argv)
|
|
|
|
|
|
|
|
manifest_output = args.output + '.manifest'
|
|
|
|
with open(manifest_output, 'w') as manifest:
|
|
|
|
# Write the Dart tree.
|
|
|
|
for root, dirs, files in os.walk(DART_ROOT):
|
|
|
|
dirs[:] = [d for d in dirs if d not in EXCLUDE_DIRS]
|
|
|
|
for file in files:
|
|
|
|
filepath = os.path.join(root, file)
|
|
|
|
relpath = filepath[len(DART_ROOT) + 1:]
|
|
|
|
fuchsiapath = os.path.join(FUCHSIA_TEST_MANIFEST_PREFIX,
|
|
|
|
relpath)
|
|
|
|
manifest.write(
|
|
|
|
'%s=%s\n' % (fuchsiapath, os.path.join(root, file)))
|
|
|
|
|
|
|
|
dart_conf = utils.GetBuildConf(args.mode, args.arch)
|
|
|
|
dart_out = os.path.join(FUCHSIA_TEST_MANIFEST_PREFIX, 'out', dart_conf)
|
|
|
|
fuchsia_conf = '%s-%s' % (args.mode, fuchsia_arch(args.arch))
|
|
|
|
fuchsia_out = os.path.join(FUCHSIA_ROOT, 'out', fuchsia_conf)
|
|
|
|
for file in BINARY_FILES:
|
|
|
|
manifest.write('%s=%s\n' % (os.path.join(dart_out, file),
|
|
|
|
os.path.join(fuchsia_out, file)))
|
|
|
|
|
|
|
|
return 0
|
2017-01-19 18:11:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-08-05 20:34:31 +00:00
|
|
|
sys.exit(main(sys.argv))
|