Files
carbon-lang/explorer/testdata/assert/assert.carbon
T
Jon Ross-Perkins 3704e942a2 Use a regex for the assert line (#2163)
Fixes the test (which had a line 431 versus 481 lissue)
2022-09-09 14:21:41 -07:00

22 lines
815 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
//
// This won't auto-update because it uses a regex for the prelude line number,
// so that it doesn't need to be updated on every prelude change.
//
// RUN: %{not} %{explorer} %s 2>&1 | \
// RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes=false %s
// RUN: %{not} %{explorer} --parser_debug --trace_file=- %s 2>&1 | \
// RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes %s
// NOAUTOUPDATE
// CHECK: RUNTIME ERROR: {{.*}}/explorer/data/prelude.carbon:{{.*}}: "HALLO WELT"
package ExplorerTest api;
fn Main() -> i32 {
Assert(true, "HALLO WELT");
Assert(false, "HALLO WELT");
return 0;
}