| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- # 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
- """Auto-generated list of tests. Run `./tests.py --update_list` to update."""
- TEST_LIST = [
- "assignment_copy1",
- "assignment_copy2",
- "block1",
- "block2",
- "break1",
- "choice1",
- "continue1",
- "experimental_continuation1",
- "experimental_continuation2",
- "experimental_continuation3",
- "experimental_continuation4",
- "experimental_continuation5",
- "experimental_continuation6",
- "experimental_continuation7",
- "experimental_continuation8",
- "experimental_continuation9",
- "fun1",
- "fun2",
- "fun3",
- "fun4",
- "fun5",
- "fun6_fail_type",
- "fun_named_params",
- "fun_named_params2",
- "fun_recur",
- "funptr1",
- "generic_function1",
- "generic_function2",
- "generic_function3",
- "generic_function_apply",
- "generic_function_fail1",
- "generic_function_fail2",
- "generic_function_fail3",
- "generic_function_swap",
- "generic_function_tuple_map",
- "global_variable1",
- "global_variable2",
- "global_variable3",
- "global_variable4",
- "global_variable5",
- "global_variable6",
- "global_variable7",
- "global_variable8",
- "if1",
- "if2",
- "if3",
- "ignored_parameter",
- "invalid_char",
- "match_any_int",
- "match_int",
- "match_int_default",
- "match_placeholder",
- "match_type",
- "next",
- "no_match",
- "pattern_init",
- "pattern_variable_fail",
- "placeholder_variable",
- "record1",
- "star",
- "struct1",
- "struct2",
- "struct3",
- "tuple1",
- "tuple2",
- "tuple3",
- "tuple4",
- "tuple5",
- "tuple_assign",
- "tuple_equality",
- "tuple_equality2",
- "tuple_equality3",
- "tuple_match",
- "tuple_match2",
- "tuple_match3",
- "type_compute",
- "type_compute2",
- "type_compute3",
- "while1",
- "zero",
- ]
|