e33d023fa0
doesn't show these formatting changes as diffs. Change-Id: I69ccbf4adabc66d88371cece785a2c1bce60f133 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/138962 Reviewed-by: Ryan Macnak <rmacnak@google.com>
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
# Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import("../../../build/executable_suffix.gni")
|
|
|
|
# This file defines a template for running bit tests.
|
|
#
|
|
# - bit_test()
|
|
# Runs bit on the specified file.
|
|
|
|
# A template for running bit. This lets bit commands be run as ninja commands.
|
|
#
|
|
# Parameters:
|
|
# tests:
|
|
# The list of files to input into bit
|
|
template("bit_test") {
|
|
assert(defined(invoker.tests), "tests must be defined for $target_name")
|
|
|
|
action_foreach(target_name) {
|
|
script = "//runtime/llvm_codegen/test/run_bit.py"
|
|
sources = invoker.tests
|
|
|
|
deps = [ "../../bit" ]
|
|
inputs = [ "${root_out_dir}/bit$executable_suffix" ]
|
|
|
|
# This output is always dirty so ninja will always run this step when asked to.
|
|
outputs = [ "$target_gen_dir/{{source_name_part}}}" ]
|
|
args = [
|
|
"--bit",
|
|
rebase_path("${root_out_dir}/bit"),
|
|
"--test",
|
|
"{{source}}",
|
|
"--out",
|
|
rebase_path(target_gen_dir),
|
|
]
|
|
}
|
|
}
|