mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Adds minimal defaults for codegen so that those tests don't need to specify the full command line. Moves driver/testdata/compile to check/testdata/basics/raw_sem_ir, which seems like it better reflects the focus. Removes the textual IR test because we have plenty of those now. Moves a multiline token diagnostic test to parse because (a) diagnostics doesn't have other tests and (b) this is really testing the way that parse structures the location. Drops `--include-diagnostic-kind` from some driver tests that aren't testing a diagnostic, so the flag felt a bit like noise (even before this change, there are a few tests that don't specify it because they're not intended to test an emitted diagnostic, just high-level diagnostic behaviors). Adds some comments to reflect my understanding of why a test exists, when I was pausing to think about it. Modifies the stdin test to do more dumps; which happens to expose we currently misbehave.
17 lines
748 B
Plaintext
17 lines
748 B
Plaintext
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
// EXTRA-ARGS: --no-prelude-import --target=x86_687-unknown-linux-gnu --output=-
|
|
//
|
|
// No autoupdate because the message comes from LLVM.
|
|
// To test this file alone, run:
|
|
// bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/codegen/testdata/fail_target_triple.carbon
|
|
// To dump output, run:
|
|
// bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/codegen/testdata/fail_target_triple.carbon
|
|
// NOAUTOUPDATE
|
|
// CHECK:STDERR: error: invalid target: {{.*}}x86_687{{.*}}
|
|
// CHECK:STDERR:
|
|
|
|
fn Main() {}
|