From 129f31710d36caefb5846a41be6e6c6ff4ab5fa9 Mon Sep 17 00:00:00 2001 From: Jon Ross-Perkins Date: Tue, 4 Jun 2024 09:44:36 -0700 Subject: [PATCH] Disable autoupdate in explorer tests. (#4023) Just replacing AUTOUPDATE with NOAUTOUPDATE, and removing the autoupdate script. Tests will still run, but autoupdate may need to be fixed if significant changes are made. I noticed this while trying to autoupdate for #4007 (because we verify that tests have been autoupdated). Autoupdate was likely broken by #3449. Trying to run with no changes gives: ``` CHECK failure at testing/file_test/file_test_base.cpp:801: !absl::GetFlag(FLAGS_test_targets_file).empty(): Missing --test_targets_file. ``` This is because the `file_test` rule creates a file with test inputs that it runs with, which the prebuilt binary doesn't provide. A local kludge to create a `file_test` target not using prebuilt_binary showed another error: ``` : CommandLine Error: Option ': CommandLine Error: Option 'parser_debug' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options trace_phase' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options ``` I'm thinking here that the explorer code hasn't been in enough use, and we're seeing some rot as a consequence. Rather than trying to maintain it, I'm suggesting to go with NOAUTOUPDATE. --- explorer/autoupdate_testdata.sh | 10 ---------- explorer/testdata/addr/fail_method_let.carbon | 2 +- .../testdata/addr/fail_method_self_misspelled.carbon | 2 +- explorer/testdata/addr/fail_method_self_type.carbon | 2 +- explorer/testdata/addr/fail_missing_addr.carbon | 2 +- explorer/testdata/addr/method.carbon | 2 +- explorer/testdata/addr/nested_method.carbon | 2 +- explorer/testdata/alias/alias_in_class.carbon | 2 +- explorer/testdata/alias/class_alias.carbon | 2 +- explorer/testdata/alias/fail_alias_expression.carbon | 2 +- explorer/testdata/alias/fail_alias_var.carbon | 2 +- .../alias/fail_interface_method_as_class_member.carbon | 2 +- .../testdata/alias/fail_namespace_alias_member.carbon | 2 +- explorer/testdata/alias/fail_self_alias.carbon | 2 +- explorer/testdata/alias/fail_wrong_fn_alias_use.carbon | 2 +- .../testdata/alias/fail_wrong_fn_alias_use_expr.carbon | 2 +- .../alias/fail_wrong_interface_alias_use.carbon | 2 +- .../alias/fail_wrong_namepsace_alias_use.carbon | 2 +- explorer/testdata/alias/function_alias.carbon | 2 +- explorer/testdata/alias/interface_alias.carbon | 2 +- explorer/testdata/alias/member_name_alias.carbon | 2 +- explorer/testdata/alias/namespace_alias.carbon | 2 +- .../testdata/alias/namespace_alias_recursive.carbon | 2 +- explorer/testdata/alias/struct_alias.carbon | 2 +- explorer/testdata/alias/type_alias.carbon | 2 +- explorer/testdata/array/conversion.carbon | 2 +- explorer/testdata/array/deduce_size_from_array.carbon | 2 +- .../array/deduce_size_from_array_destructured.carbon | 2 +- explorer/testdata/array/deduce_size_from_tuple.carbon | 2 +- .../array/deduce_size_from_tuple_destructured.carbon | 2 +- .../testdata/array/deduce_zero_size_from_array.carbon | 2 +- .../array/deduce_zero_size_from_empty_tuple.carbon | 2 +- .../testdata/array/element_convertible_to_type.carbon | 2 +- explorer/testdata/array/fail_index.carbon | 2 +- .../array/fail_index_deduced_size_from_array.carbon | 2 +- .../array/fail_index_deduced_size_from_tuple.carbon | 2 +- explorer/testdata/array/fail_negative_size.carbon | 2 +- .../array/fail_print_uninitalized_array_element.carbon | 2 +- explorer/testdata/array/fail_size_mismatch.carbon | 2 +- .../array/fail_store_to_uninitialized_array.carbon | 2 +- .../fail_store_to_uninitialized_global_array.carbon | 2 +- ...ray_size_from_tuple_different_subtuples_size.carbon | 2 +- ...ted_array_size_from_tuple_of_different_types.carbon | 2 +- ...y_size_in_tuple_no_expression_to_deduce_from.carbon | 2 +- .../testdata/array/fail_to_deduce_size_from_int.carbon | 2 +- ...to_deduce_size_from_tuple_of_different_types.carbon | 2 +- ..._to_deduce_size_no_expression_to_deduce_from.carbon | 2 +- ...fail_to_index_deduced_nested_size_from_array.carbon | 2 +- ...fail_to_index_deduced_nested_size_from_tuple.carbon | 2 +- explorer/testdata/array/index.carbon | 2 +- explorer/testdata/array/nested.carbon | 2 +- ...and_external_array_size_deduction_from_tuple.carbon | 2 +- .../nested_array_size_deduction_from_array.carbon | 2 +- ...nested_array_size_deduction_from_empty_tuple.carbon | 2 +- .../nested_array_size_deduction_from_tuple.carbon | 2 +- ...size_deduction_from_tuple_of_tuple_and_array.carbon | 2 +- .../three_dim_array_size_deduction_from_tuple.carbon | 2 +- explorer/testdata/as/as_same_type.carbon | 2 +- explorer/testdata/as/convert.carbon | 2 +- explorer/testdata/as/fail_destination_not_type.carbon | 2 +- .../testdata/as/fail_intrinsic_convert_no_args.carbon | 2 +- .../testdata/as/fail_intrinsic_convert_non_type.carbon | 2 +- .../as/fail_intrinsic_convert_non_value.carbon | 2 +- explorer/testdata/as/fail_intrinsic_no_args.carbon | 2 +- explorer/testdata/as/fail_intrinsic_non_type.carbon | 2 +- explorer/testdata/as/fail_no_conversion.carbon | 2 +- explorer/testdata/as/implicit_as.carbon | 2 +- explorer/testdata/as/struct_as_class.carbon | 2 +- explorer/testdata/assert/assert.carbon | 2 +- explorer/testdata/assert/convert.carbon | 2 +- explorer/testdata/assert/fail_assert.carbon | 2 +- explorer/testdata/assert/fail_convert.carbon | 2 +- .../testdata/assert/fail_intrinsic_bool_type.carbon | 2 +- explorer/testdata/assert/fail_intrinsic_no_args.carbon | 2 +- .../testdata/assert/fail_intrinsic_no_convert.carbon | 2 +- .../testdata/assert/fail_intrinsic_str_type.carbon | 2 +- explorer/testdata/assign/convert_rhs.carbon | 2 +- explorer/testdata/assign/destruct_original.carbon | 2 +- explorer/testdata/assign/reassign_original.carbon | 2 +- .../testdata/assoc_const/bug_multi_impl_scoping.carbon | 2 +- explorer/testdata/assoc_const/fail_anonymous.carbon | 2 +- .../testdata/assoc_const/fail_different_type.carbon | 2 +- .../testdata/assoc_const/fail_different_value.carbon | 2 +- .../testdata/assoc_const/fail_equal_indirectly.carbon | 2 +- .../assoc_const/fail_equal_to_dependent_type.carbon | 2 +- .../assoc_const/fail_implied_constraints.carbon | 2 +- .../testdata/assoc_const/fail_incomplete_impl_1.carbon | 2 +- .../testdata/assoc_const/fail_incomplete_impl_2.carbon | 2 +- .../testdata/assoc_const/fail_indirectly_equal.carbon | 2 +- .../assoc_const/fail_match_in_deduction.carbon | 2 +- .../testdata/assoc_const/fail_missing_equal.carbon | 2 +- .../testdata/assoc_const/fail_missing_rewrite.carbon | 2 +- .../assoc_const/fail_multiple_deduction.carbon | 2 +- .../assoc_const/fail_overspecified_impl.carbon | 2 +- explorer/testdata/assoc_const/fail_redefined.carbon | 2 +- .../fail_rewrite_creates_infinite_type.carbon | 2 +- .../testdata/assoc_const/fail_rewrite_cycle.carbon | 2 +- .../fail_rewrite_depends_on_later_rewrite.carbon | 2 +- .../assoc_const/fail_simple_rewrite_cycle_1.carbon | 2 +- .../assoc_const/fail_simple_rewrite_cycle_2.carbon | 2 +- .../testdata/assoc_const/fail_unknown_value.carbon | 2 +- .../fail_unknown_value_specified_in_constraint.carbon | 2 +- explorer/testdata/assoc_const/impl_lookup.carbon | 2 +- .../assoc_const/impl_used_by_later_rewrite.carbon | 2 +- explorer/testdata/assoc_const/implement.carbon | 2 +- explorer/testdata/assoc_const/lookup_in_rewrite.carbon | 2 +- explorer/testdata/assoc_const/member_of_value.carbon | 2 +- .../testdata/assoc_const/pass_equal_to_rewrite.carbon | 2 +- .../testdata/assoc_const/pass_rewrite_to_equal.carbon | 2 +- explorer/testdata/assoc_const/resolve_rewrites.carbon | 2 +- .../rewrite_depends_on_prior_rewrite.carbon | 2 +- .../assoc_const/rewrite_interface_params.carbon | 2 +- .../testdata/assoc_const/rewrite_large_type.carbon | 2 +- explorer/testdata/assoc_const/simple_constraint.carbon | 2 +- explorer/testdata/assoc_const/simple_equality.carbon | 2 +- explorer/testdata/auto/fail_use_in_init.carbon | 2 +- explorer/testdata/basic_syntax/addition.carbon | 2 +- explorer/testdata/basic_syntax/choice.carbon | 2 +- .../basic_syntax/fail_alternative_not_type.carbon | 2 +- .../basic_syntax/fail_alternative_uses_choice.carbon | 2 +- .../basic_syntax/fail_assign_to_function.carbon | 2 +- .../testdata/basic_syntax/fail_assign_to_rval.carbon | 2 +- explorer/testdata/basic_syntax/fail_block.carbon | 2 +- .../basic_syntax/fail_choice_extra_parens.carbon | 2 +- .../testdata/basic_syntax/fail_choice_no_parens.carbon | 2 +- .../fail_choice_pattern_extra_parens.carbon | 2 +- .../basic_syntax/fail_choice_pattern_no_parens.carbon | 2 +- .../basic_syntax/fail_compare_precedence.carbon | 2 +- .../testdata/basic_syntax/fail_invalid_char.carbon | 2 +- .../testdata/basic_syntax/fail_invalid_integer.carbon | 2 +- .../basic_syntax/fail_invalid_integer_type.carbon | 2 +- .../basic_syntax/fail_unimplemented_example.carbon | 2 +- .../basic_syntax/fail_unknown_intrinsic.carbon | 2 +- .../basic_syntax/fail_unsupported_integer_type.carbon | 2 +- explorer/testdata/basic_syntax/print_allocs.carbon | 2 +- .../testdata/basic_syntax/print_allocs_empty.carbon | 2 +- explorer/testdata/basic_syntax/record.carbon | 2 +- explorer/testdata/basic_syntax/star.carbon | 2 +- explorer/testdata/basic_syntax/zero.carbon | 2 +- explorer/testdata/block/empty.carbon | 2 +- explorer/testdata/block/shadowing.carbon | 2 +- explorer/testdata/choice/fail_recursive_use.carbon | 2 +- .../generic_choice_multiple_template_arguments.carbon | 2 +- .../generic_choice_nested_in_template_class.carbon | 2 +- .../choice/generic_choice_simple_assignment.carbon | 2 +- explorer/testdata/choice/mixed_arity.carbon | 2 +- explorer/testdata/choice/type_of_type.carbon | 2 +- explorer/testdata/class/abstract_class.carbon | 2 +- explorer/testdata/class/abstract_method.carbon | 2 +- .../class/abstract_method_base_instance.carbon | 2 +- explorer/testdata/class/assign.carbon | 2 +- explorer/testdata/class/assign_member.carbon | 2 +- explorer/testdata/class/base_constructor.carbon | 2 +- explorer/testdata/class/bound_method.carbon | 2 +- .../class/bound_method_compound_member_access.carbon | 2 +- explorer/testdata/class/class_function.carbon | 2 +- .../testdata/class/class_function_from_instance.carbon | 2 +- explorer/testdata/class/class_function_self.carbon | 2 +- explorer/testdata/class/class_function_value.carbon | 2 +- .../class/class_inheritance_function_call.carbon | 2 +- .../testdata/class/class_inheritance_methods.carbon | 2 +- .../testdata/class/class_inheritance_multiple.carbon | 2 +- .../testdata/class/class_inheritance_shadow.carbon | 2 +- .../testdata/class/class_inheritance_variables.carbon | 2 +- .../testdata/class/class_subtyping_argument.carbon | 2 +- explorer/testdata/class/class_subtyping_basic.carbon | 2 +- .../testdata/class/class_subtyping_multiple.carbon | 2 +- explorer/testdata/class/conversion.carbon | 2 +- explorer/testdata/class/empty_class.carbon | 2 +- .../class/fail_abstract_method_abstract_class.carbon | 2 +- .../class/fail_abstract_method_base_class.carbon | 2 +- .../testdata/class/fail_abstract_method_body.carbon | 2 +- .../class/fail_abstract_method_final_impl.carbon | 2 +- .../fail_abstract_method_non_abstract_class.carbon | 2 +- .../class/fail_call_method_before_typecheck.carbon | 2 +- .../testdata/class/fail_call_undefined_method.carbon | 2 +- .../testdata/class/fail_circular_inheritance.carbon | 2 +- explorer/testdata/class/fail_class_named_self.carbon | 2 +- .../testdata/class/fail_direct_base_class_init.carbon | 2 +- explorer/testdata/class/fail_extend_after_var.carbon | 2 +- explorer/testdata/class/fail_extend_final_class.carbon | 2 +- .../testdata/class/fail_extend_member_class.carbon | 2 +- explorer/testdata/class/fail_extend_non_class.carbon | 2 +- explorer/testdata/class/fail_extend_twice.carbon | 2 +- .../testdata/class/fail_field_access_mismatch.carbon | 2 +- .../class/fail_field_access_mismatch_base.carbon | 2 +- .../class/fail_field_assign_mismatch_base.carbon | 2 +- explorer/testdata/class/fail_field_mismatch.carbon | 2 +- explorer/testdata/class/fail_field_missing.carbon | 2 +- .../class/fail_impl_method_not_existing.carbon | 2 +- .../testdata/class/fail_impl_method_not_virtual.carbon | 2 +- .../class/fail_incomplete_in_conversion.carbon | 2 +- .../fail_instantiate_abstract_class_constructor.carbon | 2 +- .../class/fail_instantiate_abstract_class_empty.carbon | 2 +- .../fail_instantiate_abstract_class_struct.carbon | 2 +- explorer/testdata/class/fail_invalid_subtyping.carbon | 2 +- .../class/fail_member_call_before_typecheck.carbon | 2 +- explorer/testdata/class/fail_member_of_self.carbon | 2 +- explorer/testdata/class/fail_method_deduced.carbon | 2 +- explorer/testdata/class/fail_method_from_class.carbon | 2 +- explorer/testdata/class/fail_method_in_var.carbon | 2 +- .../fail_override_virtual_with_non_virtual.carbon | 2 +- explorer/testdata/class/fail_qualified_method.carbon | 2 +- .../class/fail_redeclare_virtual_method.carbon | 2 +- explorer/testdata/class/fail_return_method.carbon | 2 +- .../class/fail_store_to_uninitialized_class.carbon | 2 +- .../testdata/class/fail_use_before_typecheck.carbon | 2 +- .../testdata/class/fail_virtual_class_function.carbon | 2 +- .../testdata/class/fail_virtual_method_absent.carbon | 2 +- explorer/testdata/class/function_param.carbon | 2 +- explorer/testdata/class/global_var.carbon | 2 +- explorer/testdata/class/method.carbon | 2 +- explorer/testdata/class/method_call_method.carbon | 2 +- explorer/testdata/class/method_self.carbon | 2 +- explorer/testdata/class/new_and_delete.carbon | 2 +- .../testdata/class/new_and_delete_hierarchy.carbon | 2 +- explorer/testdata/class/non_virtual_dispatch.carbon | 2 +- .../class/non_virtual_dispatch_abstract.carbon | 2 +- explorer/testdata/class/parametrized_base_class.carbon | 2 +- explorer/testdata/class/pointer_conversion.carbon | 2 +- explorer/testdata/class/temp.carbon | 2 +- explorer/testdata/class/type_of_type.carbon | 2 +- explorer/testdata/class/var.carbon | 2 +- explorer/testdata/class/virtual_method.carbon | 2 +- explorer/testdata/class/virtual_method_self.carbon | 2 +- .../testdata/class/virtual_method_shadowed_attr.carbon | 2 +- explorer/testdata/comparison/builtin_comparsion.carbon | 2 +- explorer/testdata/comparison/builtin_equality.carbon | 2 +- explorer/testdata/comparison/custom_equality.carbon | 2 +- explorer/testdata/comparison/empty_struct.carbon | 2 +- explorer/testdata/comparison/fail_no_impl.carbon | 2 +- .../constraint/binding_dot_self_in_constraint.carbon | 2 +- explorer/testdata/constraint/binding_self.carbon | 2 +- .../testdata/constraint/combined_interfaces.carbon | 2 +- explorer/testdata/constraint/dot_self_is_other.carbon | 2 +- .../testdata/constraint/fail_ambiguous_member.carbon | 2 +- .../testdata/constraint/fail_combine_equality.carbon | 2 +- .../constraint/fail_dot_self_after_scope.carbon | 2 +- .../constraint/fail_dot_self_after_scope_2.carbon | 2 +- .../constraint/fail_dot_self_not_in_scope.carbon | 2 +- explorer/testdata/constraint/fail_infinite_self.carbon | 2 +- .../testdata/constraint/fail_infinite_self_ptr.carbon | 2 +- .../testdata/constraint/fail_missing_member.carbon | 2 +- explorer/testdata/constraint/fail_non_type_self.carbon | 2 +- .../fail_where_equals_different_types.carbon | 2 +- .../constraint/fail_where_impls_non_constraint.carbon | 2 +- .../constraint/fail_where_impls_non_type.carbon | 2 +- .../constraint/fail_where_non_type_impls.carbon | 2 +- explorer/testdata/constraint/nondependent_where.carbon | 2 +- .../constraint/qualified_lookup_in_where.carbon | 2 +- explorer/testdata/constraint/rewrite.carbon | 2 +- explorer/testdata/constraint/rewrite_compound.carbon | 2 +- explorer/testdata/constraint/rewrite_compound_2.carbon | 2 +- .../testdata/constraint/rewrite_in_qualifier.carbon | 2 +- .../constraint/rewrite_in_qualifier_and_type.carbon | 2 +- explorer/testdata/constraint/type_of_type.carbon | 2 +- explorer/testdata/constraint/where_impls.carbon | 2 +- .../testdata/constraint/where_multiple_equality.carbon | 2 +- explorer/testdata/constraint/where_self.carbon | 2 +- .../destructor/call_destructor_from_destructor.carbon | 2 +- explorer/testdata/destructor/destroy_array.carbon | 2 +- explorer/testdata/destructor/destroy_base_class.carbon | 2 +- .../destructor/destroy_base_class_and_members.carbon | 2 +- .../testdata/destructor/destroy_different_types.carbon | 2 +- .../destructor/destroy_inner_destructor.carbon | 2 +- .../testdata/destructor/destructor_with_return.carbon | 2 +- .../testdata/destructor/dont_call_in_method.carbon | 2 +- .../fail_delete_base_without_virtual_destructor.carbon | 2 +- .../fail_multiple_destructor_declaration.carbon | 2 +- .../testdata/destructor/fail_override_abstract.carbon | 2 +- .../testdata/destructor/fail_override_impl_none.carbon | 2 +- .../destructor/fail_override_virtual_virtual.carbon | 2 +- .../testdata/destructor/function_with_return.carbon | 2 +- explorer/testdata/destructor/loop_block.carbon | 2 +- .../testdata/destructor/loop_break_continue.carbon | 2 +- .../destructor/nested_block_with_return.carbon | 2 +- explorer/testdata/destructor/self_addr.carbon | 2 +- explorer/testdata/destructor/virtual_destructor.carbon | 2 +- .../destructor/virtual_destructor_nested.carbon | 2 +- explorer/testdata/for/fail_convert.carbon | 2 +- explorer/testdata/for/for_loop.carbon | 2 +- explorer/testdata/for/for_loop_auto.carbon | 2 +- explorer/testdata/for/for_loop_break.carbon | 2 +- explorer/testdata/for/for_loop_continue.carbon | 2 +- explorer/testdata/for/for_loop_empty.carbon | 2 +- explorer/testdata/for/for_loop_nested.carbon | 2 +- explorer/testdata/function/auto_return/add.carbon | 2 +- .../function/auto_return/fail_direct_recurse.carbon | 2 +- .../function/auto_return/fail_multiple_returns.carbon | 2 +- .../function/auto_return/fail_no_return.carbon | 2 +- .../function/auto_return/fail_separate_decl.carbon | 2 +- .../function/auto_return/modify_arg_type.carbon | 2 +- .../function/auto_return/modify_return_type.carbon | 2 +- explorer/testdata/function/auto_return/type.carbon | 2 +- explorer/testdata/function/convert_args.carbon | 2 +- explorer/testdata/function/empty_params.carbon | 2 +- explorer/testdata/function/fail_call_undefined.carbon | 2 +- .../testdata/function/fail_call_undefined_main.carbon | 2 +- explorer/testdata/function/fail_call_with_tuple.carbon | 2 +- explorer/testdata/function/fail_invalid_fnty.carbon | 2 +- .../testdata/function/fail_main_with_parameters.carbon | 2 +- explorer/testdata/function/fail_match_no_return.carbon | 2 +- .../testdata/function/fail_match_partial_return.carbon | 2 +- .../testdata/function/fail_non_exhaustive_match.carbon | 2 +- explorer/testdata/function/fail_parameter_type.carbon | 2 +- .../testdata/function/fail_parameter_type_only.carbon | 2 +- .../function/fail_recurse_before_typecheck.carbon | 2 +- .../function/fail_recurse_in_return_type.carbon | 2 +- .../function/fail_return_call_has_invalid_body.carbon | 2 +- .../testdata/function/fail_var_type_is_call.carbon | 2 +- explorer/testdata/function/fnty.carbon | 2 +- explorer/testdata/function/ignored_parameter.carbon | 2 +- explorer/testdata/function/multiple_args.carbon | 2 +- .../non_exhaustive_match_no_return_type.carbon | 2 +- .../function/non_exhaustive_match_return.carbon | 2 +- explorer/testdata/function/param_lifetime.carbon | 2 +- explorer/testdata/function/recursive.carbon | 2 +- explorer/testdata/function/return.carbon | 2 +- .../function/return_convertible_to_type.carbon | 2 +- .../testdata/function/return_exhaustive_match.carbon | 2 +- explorer/testdata/function/type_match.carbon | 2 +- explorer/testdata/generic_class/class_function.carbon | 2 +- .../testdata/generic_class/convert_from_struct.carbon | 2 +- .../testdata/generic_class/fail_args_mismatch.carbon | 2 +- .../generic_class/fail_argument_deduction.carbon | 2 +- .../generic_class/fail_bad_parameter_type.carbon | 2 +- .../generic_class/fail_field_access_on_generic.carbon | 2 +- .../generic_class/fail_generic_class_arg.carbon | 2 +- .../generic_class/fail_generic_in_pattern.carbon | 2 +- .../generic_class/fail_instantiate_non_generic.carbon | 2 +- explorer/testdata/generic_class/fail_no_args.carbon | 2 +- .../testdata/generic_class/fail_point_equal.carbon | 2 +- .../generic_class/fail_return_type_is_type.carbon | 2 +- .../testdata/generic_class/fail_self_with_arg.carbon | 2 +- .../testdata/generic_class/fail_two_arg_lists.carbon | 2 +- .../generic_class/fail_value_param_mismatch.carbon | 2 +- .../generic_class/generic_class_substitution.carbon | 2 +- .../generic_class/generic_fun_and_class.carbon | 2 +- explorer/testdata/generic_class/generic_point.carbon | 2 +- .../testdata/generic_class/impl_with_argument.carbon | 2 +- explorer/testdata/generic_class/impl_with_self.carbon | 2 +- .../generic_class/instantiation_at_compile_time.carbon | 2 +- .../generic_class/param_with_dependent_type.carbon | 2 +- .../generic_class/parameter_type_conversion.carbon | 2 +- .../testdata/generic_class/point_with_interface.carbon | 2 +- .../testdata/generic_class/use_at_compile_time.carbon | 2 +- explorer/testdata/generic_class/use_self.carbon | 2 +- explorer/testdata/generic_function/apply.carbon | 2 +- .../generic_function/call_at_compile_time.carbon | 2 +- .../fail_implicit_conversion_extra_field.carbon | 2 +- .../fail_implicit_conversion_missing_field.carbon | 2 +- .../generic_function/fail_missing_exclam.carbon | 2 +- .../testdata/generic_function/fail_not_addable.carbon | 2 +- .../testdata/generic_function/fail_not_type.carbon | 2 +- .../fail_type_deduction_mismatch.carbon | 2 +- .../generic_function/fail_type_deduction_unused.carbon | 2 +- .../testdata/generic_function/fail_type_only.carbon | 2 +- .../fail_wrong_variable_substituation.carbon | 2 +- .../testdata/generic_function/generic_method.carbon | 2 +- .../generic_function/implicit_conversion.carbon | 2 +- .../generic_function/instantiate_deduced.carbon | 2 +- .../testdata/generic_function/non_generic_param.carbon | 2 +- .../generic_function/nondeduced_generic_param.carbon | 2 +- explorer/testdata/generic_function/return_val.carbon | 2 +- explorer/testdata/generic_function/swap.carbon | 2 +- explorer/testdata/generic_function/tuple_map.carbon | 2 +- .../testdata/generic_function/type_matching.carbon | 2 +- explorer/testdata/if_else/convert_condition.carbon | 2 +- explorer/testdata/if_else/if_else.carbon | 2 +- explorer/testdata/if_else/if_else_if.carbon | 2 +- explorer/testdata/if_else/if_else_if_else.carbon | 2 +- explorer/testdata/if_else/if_false.carbon | 2 +- explorer/testdata/if_else/if_nesting.carbon | 2 +- explorer/testdata/if_else/if_true.carbon | 2 +- .../testdata/if_expression/convert_condition.carbon | 2 +- explorer/testdata/if_expression/if_then_else.carbon | 2 +- explorer/testdata/impl/deducible_parameter.carbon | 2 +- explorer/testdata/impl/fail_bad_member_kind.carbon | 2 +- explorer/testdata/impl/fail_impl_as.carbon | 2 +- .../testdata/impl/fail_impl_as_non_interface.carbon | 2 +- .../testdata/impl/fail_impl_as_not_constraint.carbon | 2 +- .../testdata/impl/fail_impl_as_parameterized.carbon | 2 +- explorer/testdata/impl/fail_impl_as_symbolic.carbon | 2 +- explorer/testdata/impl/fail_impl_redefinition.carbon | 2 +- explorer/testdata/impl/fail_impl_symbolic_as.carbon | 2 +- .../testdata/impl/fail_nondeducible_parameter.carbon | 2 +- .../testdata/impl/fail_param_interface_in_impl.carbon | 2 +- .../testdata/impl/fail_unmet_impls_constraint.carbon | 2 +- explorer/testdata/impl/generic_method_impl.carbon | 2 +- explorer/testdata/impl/impl_in_generic_class.carbon | 2 +- explorer/testdata/impl/impls_constraint.carbon | 2 +- explorer/testdata/impl/param_impl.carbon | 2 +- explorer/testdata/impl/param_impl2.carbon | 2 +- explorer/testdata/impl/param_impl_with_self.carbon | 2 +- explorer/testdata/impl/param_interface_in_impl.carbon | 2 +- explorer/testdata/impl/struct.carbon | 2 +- explorer/testdata/impl_match/build_tree.carbon | 2 +- explorer/testdata/impl_match/fail_self_recurse.carbon | 2 +- .../fail_self_recurse_without_match_first.carbon | 2 +- .../impl_match/fail_simple_self_recurse.carbon | 2 +- .../testdata/impl_match/fail_struct_recurse.carbon | 2 +- .../testdata/impl_match/fail_three_step_recurse.carbon | 2 +- explorer/testdata/impl_match/fail_tuple_recurse.carbon | 2 +- explorer/testdata/impl_match/match_first.carbon | 2 +- .../testdata/impl_match/non_overlapping_labels.carbon | 2 +- .../testdata/impl_match/self_recurse_with_match.carbon | 2 +- .../impl_match/self_recurse_with_match_first.carbon | 2 +- explorer/testdata/impl_match/specialization.carbon | 2 +- .../testdata/impl_match/type_structure_bindings.carbon | 2 +- .../testdata/impl_match/type_structure_order.carbon | 2 +- .../impl_match/type_structure_vs_match_first.carbon | 2 +- explorer/testdata/import/fail_order.carbon | 2 +- explorer/testdata/import/nonexistent_library.carbon | 2 +- explorer/testdata/import/nonexistent_package.carbon | 2 +- explorer/testdata/interface/addr_self.carbon | 2 +- .../assoc_constant_constraints_in_scope.carbon | 2 +- explorer/testdata/interface/class_function.carbon | 2 +- .../testdata/interface/constrained_parameter.carbon | 2 +- explorer/testdata/interface/extend.carbon | 2 +- .../interface/external_impl_point_vector.carbon | 2 +- .../testdata/interface/external_impl_use_self.carbon | 2 +- .../testdata/interface/fail_bad_member_kind.carbon | 2 +- .../testdata/interface/fail_extend_external.carbon | 2 +- .../interface/fail_extend_not_constraint.carbon | 2 +- .../testdata/interface/fail_extend_with_self.carbon | 2 +- .../interface/fail_external_impl_omit_self.carbon | 2 +- .../testdata/interface/fail_external_impl_self.carbon | 2 +- explorer/testdata/interface/fail_impl_adds_self.carbon | 2 +- .../testdata/interface/fail_impl_bad_member.carbon | 2 +- .../testdata/interface/fail_impl_mismatch_self.carbon | 2 +- .../testdata/interface/fail_impl_missing_member.carbon | 2 +- .../testdata/interface/fail_impl_missing_self.carbon | 2 +- explorer/testdata/interface/fail_impl_not_type.carbon | 2 +- .../interface/fail_interface_missing_member.carbon | 2 +- .../interface/fail_member_lookup_in_definition.carbon | 2 +- explorer/testdata/interface/fail_no_impl.carbon | 2 +- .../testdata/interface/fail_qualified_method.carbon | 2 +- .../interface/fail_require_not_constraint.carbon | 2 +- .../testdata/interface/fail_require_not_type.carbon | 2 +- .../interface/fail_self_lookup_in_definition.carbon | 2 +- .../interface/fail_use_assoc_const_before_decl.carbon | 2 +- .../interface/fail_use_assoc_const_in_defn.carbon | 2 +- .../testdata/interface/fail_use_symbolic_member.carbon | 2 +- .../testdata/interface/generic_call_generic.carbon | 2 +- .../testdata/interface/generic_with_two_params.carbon | 2 +- .../interface/impl_self_interface_parameter.carbon | 2 +- .../testdata/interface/interface_name_invalid.carbon | 2 +- explorer/testdata/interface/omit_self.carbon | 2 +- .../interface/param_with_dependent_type.carbon | 2 +- explorer/testdata/interface/parameterized.carbon | 2 +- explorer/testdata/interface/require.carbon | 2 +- explorer/testdata/interface/require_not_self.carbon | 2 +- .../testdata/interface/tuple_vector_add_scale.carbon | 2 +- explorer/testdata/interface/type_of_type.carbon | 2 +- .../testdata/interface/vector_point_add_scale.carbon | 2 +- explorer/testdata/interface/with_self.carbon | 2 +- explorer/testdata/let/destroyed.carbon | 2 +- explorer/testdata/let/fail_function_args.carbon | 2 +- explorer/testdata/let/fail_global_assign.carbon | 2 +- explorer/testdata/let/fail_global_named_self.carbon | 2 +- explorer/testdata/let/fail_local_assign.carbon | 2 +- explorer/testdata/let/fail_local_named_self.carbon | 2 +- explorer/testdata/let/fail_match_choice.carbon | 2 +- explorer/testdata/let/fail_method_args.carbon | 2 +- explorer/testdata/let/fail_pinned_value_changed.carbon | 2 +- .../testdata/let/fail_pinned_value_restored.carbon | 2 +- .../let/fail_pinned_value_subobject_changed.carbon | 2 +- .../testdata/let/fail_tuple_pattern_let_context.carbon | 2 +- .../let/fail_tuple_pattern_let_context_nested.carbon | 2 +- .../testdata/let/fail_tuple_pattern_let_in_var.carbon | 2 +- explorer/testdata/let/implicit_conversion.carbon | 2 +- .../testdata/let/implicit_conversion_choice.carbon | 2 +- explorer/testdata/let/nested_tuple_pattern.carbon | 2 +- explorer/testdata/let/pinned_value_copied.carbon | 2 +- .../testdata/let/pinned_value_multiple_times.carbon | 2 +- .../let/pinned_value_mutation_unread_data.carbon | 2 +- .../testdata/let/pinned_value_mutation_unused.carbon | 2 +- .../value_expr_binding_from_initializing_expr.carbon | 2 +- .../let/value_expr_binding_from_reference.carbon | 2 +- .../let/value_expr_binding_from_temp_value.carbon | 2 +- .../testdata/let/value_expr_binding_from_value.carbon | 2 +- .../testdata/let/value_expr_from_initializing.carbon | 2 +- .../let/value_expr_from_initializing_returned.carbon | 2 +- ...value_expr_from_initializing_returned_nested.carbon | 2 +- explorer/testdata/let/value_expr_from_reference.carbon | 2 +- .../let/value_expr_from_reference_deref.carbon | 2 +- .../let/value_expr_from_reference_subobject.carbon | 2 +- explorer/testdata/let/value_expr_from_value.carbon | 2 +- explorer/testdata/limits/fail_allocate.carbon | 2 +- .../testdata/limits/fail_function_recursion.carbon | 2 +- explorer/testdata/limits/fail_loop.carbon | 2 +- explorer/testdata/limits/fail_type_check_loop.carbon | 2 +- .../testdata/linked_list/fuzzed_linked_list.carbon | 2 +- explorer/testdata/linked_list/linked_list.carbon | 2 +- explorer/testdata/linked_list/typed_linked_list.carbon | 2 +- explorer/testdata/match/any_int.carbon | 2 +- explorer/testdata/match/convert.carbon | 2 +- explorer/testdata/match/exhaustive.carbon | 2 +- explorer/testdata/match/exhaustive_bool.carbon | 2 +- .../testdata/match/exhaustive_exponential_8x.carbon | 2 +- .../match/exhaustive_exponential_series_t.carbon | 2 +- .../match/fail_exhaustive_exponential_9x.carbon | 2 +- .../match/fail_exhaustive_exponential_series_t.carbon | 2 +- explorer/testdata/match/fail_exhaustive_int.carbon | 2 +- explorer/testdata/match/fail_not_alternative.carbon | 2 +- explorer/testdata/match/fail_not_exhaustive.carbon | 2 +- explorer/testdata/match/fail_not_reachable.carbon | 2 +- .../testdata/match/fail_not_reachable_default.carbon | 2 +- .../testdata/match/fail_pattern_type_mismatch.carbon | 2 +- explorer/testdata/match/fail_redundant_int.carbon | 2 +- explorer/testdata/match/int.carbon | 2 +- explorer/testdata/match/int_default.carbon | 2 +- explorer/testdata/match/no_match.carbon | 2 +- explorer/testdata/match/placeholder.carbon | 2 +- explorer/testdata/member_access/arrow.carbon | 2 +- .../testdata/member_access/convert_lhs_class.carbon | 2 +- .../member_access/convert_lhs_interface.carbon | 2 +- .../testdata/member_access/convert_lhs_struct.carbon | 2 +- .../member_access/evaluate_type_before_dot.carbon | 2 +- .../member_access/fail_qualified_non_member.carbon | 2 +- .../testdata/member_access/fail_vacuous_access.carbon | 2 +- .../fail_vacuous_access_via_type_param.carbon | 2 +- .../nearly_vacuous_access_with_impl_lookup.carbon | 2 +- .../nearly_vacuous_access_with_instance_binding.carbon | 2 +- .../param_qualified_interface_member.carbon | 2 +- .../member_access/qualified_class_member.carbon | 2 +- .../member_access/qualified_constraint_member.carbon | 2 +- .../member_access/qualified_interface_member.carbon | 2 +- .../member_access/qualified_param_member.carbon | 2 +- .../member_access/qualified_struct_member.carbon | 2 +- .../type_qualified_interface_member.carbon | 2 +- explorer/testdata/mixin/fail_circular_mixing.carbon | 2 +- .../testdata/mixin/fail_field_member_name_clash.carbon | 2 +- .../mixin/fail_method_member_name_clash.carbon | 2 +- .../testdata/mixin/fail_mix_as_alias_target.carbon | 2 +- explorer/testdata/mixin/fail_mix_as_type_expr.carbon | 2 +- explorer/testdata/mixin/fail_mix_diamond_clash.carbon | 2 +- explorer/testdata/mixin/fail_mix_in_global.carbon | 2 +- explorer/testdata/mixin/fail_mix_in_impl.carbon | 2 +- explorer/testdata/mixin/fail_mix_invalid.carbon | 2 +- explorer/testdata/mixin/fail_mix_invalid_array.carbon | 2 +- explorer/testdata/mixin/fail_mix_members_clash.carbon | 2 +- explorer/testdata/mixin/fail_qualified_method.carbon | 2 +- explorer/testdata/mixin/fail_recursive_mixing.carbon | 2 +- explorer/testdata/mixin/fail_self_substitution.carbon | 2 +- explorer/testdata/mixin/self_substitution.carbon | 2 +- explorer/testdata/mixin/simple_mix_in_mixin.carbon | 2 +- explorer/testdata/mixin/simple_reuse.carbon | 2 +- .../mixin/use_mixin_method_in_class_method.carbon | 2 +- .../testdata/name_lookup/class_fn_body_reorder.carbon | 2 +- .../testdata/name_lookup/fail_block_duplicate.carbon | 2 +- .../testdata/name_lookup/fail_choice_duplicate.carbon | 2 +- .../testdata/name_lookup/fail_class_duplicate.carbon | 2 +- .../fail_class_fn_use_before_declaration.carbon | 2 +- .../name_lookup/fail_class_use_in_params.carbon | 2 +- .../testdata/name_lookup/fail_fn_use_in_param.carbon | 2 +- .../name_lookup/fail_fn_use_in_return_type.carbon | 2 +- .../testdata/name_lookup/fail_global_duplicate.carbon | 2 +- .../name_lookup/fail_use_before_declare.carbon | 2 +- .../name_lookup/fail_var_use_before_declaration.carbon | 2 +- explorer/testdata/name_lookup/global_shadow.carbon | 2 +- explorer/testdata/name_lookup/match_shadow.carbon | 2 +- explorer/testdata/named_constraint/extend.carbon | 2 +- .../named_constraint/fail_associated_constant.carbon | 2 +- .../named_constraint/fail_associated_function.carbon | 2 +- .../fail_compound_member_access.carbon | 2 +- .../named_constraint/fail_require_member_access.carbon | 2 +- .../testdata/named_constraint/impl_constraint.carbon | 2 +- explorer/testdata/named_constraint/require.carbon | 2 +- .../testdata/namespace/builtin_in_namespace.carbon | 2 +- explorer/testdata/namespace/declare.carbon | 2 +- .../testdata/namespace/fail_member_namespace.carbon | 2 +- .../namespace/fail_members_not_in_outer_scope.carbon | 2 +- explorer/testdata/namespace/fail_missing_nested.carbon | 2 +- .../namespace/fail_qualifier_not_namespace.carbon | 2 +- explorer/testdata/namespace/fail_unknown_member.carbon | 2 +- .../testdata/namespace/fail_unknown_namespace.carbon | 2 +- .../testdata/namespace/fail_use_as_expression.carbon | 2 +- explorer/testdata/namespace/fail_use_as_value.carbon | 2 +- .../testdata/namespace/generic_parameter_scope.carbon | 2 +- explorer/testdata/namespace/lookup_scope.carbon | 2 +- explorer/testdata/namespace/members.carbon | 2 +- explorer/testdata/operators/add.carbon | 2 +- explorer/testdata/operators/add_builtin.carbon | 2 +- explorer/testdata/operators/add_with.carbon | 2 +- explorer/testdata/operators/assign_builtin.carbon | 2 +- explorer/testdata/operators/bit_and.carbon | 2 +- explorer/testdata/operators/bit_complement.carbon | 2 +- explorer/testdata/operators/bit_or.carbon | 2 +- explorer/testdata/operators/bit_xor.carbon | 2 +- explorer/testdata/operators/bitwise.carbon | 2 +- explorer/testdata/operators/combine.carbon | 2 +- explorer/testdata/operators/div.carbon | 2 +- explorer/testdata/operators/div_builtin.carbon | 2 +- explorer/testdata/operators/fail_combine_lhs.carbon | 2 +- explorer/testdata/operators/fail_combine_rhs.carbon | 2 +- explorer/testdata/operators/fail_div_by_zero.carbon | 2 +- .../operators/fail_left_shift_large_rhs.carbon | 2 +- .../operators/fail_left_shift_negative_rhs.carbon | 2 +- explorer/testdata/operators/fail_mod_by_zero.carbon | 2 +- explorer/testdata/operators/fail_no_add.carbon | 2 +- explorer/testdata/operators/fail_no_mul.carbon | 2 +- explorer/testdata/operators/fail_no_negate.carbon | 2 +- explorer/testdata/operators/fail_no_sub.carbon | 2 +- explorer/testdata/operators/fail_overflow_add.carbon | 2 +- explorer/testdata/operators/fail_overflow_div.carbon | 2 +- .../testdata/operators/fail_overflow_multiply.carbon | 2 +- explorer/testdata/operators/fail_overflow_sub.carbon | 2 +- .../operators/fail_right_shift_large_rhs.carbon | 2 +- .../operators/fail_right_shift_negative_rhs.carbon | 2 +- explorer/testdata/operators/inc_dec.carbon | 2 +- explorer/testdata/operators/left_shift.carbon | 2 +- explorer/testdata/operators/mod.carbon | 2 +- explorer/testdata/operators/mod_builtin.carbon | 2 +- explorer/testdata/operators/mod_edges.carbon | 2 +- explorer/testdata/operators/mul.carbon | 2 +- explorer/testdata/operators/mul_builtin.carbon | 2 +- explorer/testdata/operators/negate.carbon | 2 +- explorer/testdata/operators/negate_builtin.carbon | 2 +- explorer/testdata/operators/right_shift.carbon | 2 +- explorer/testdata/operators/shift.carbon | 2 +- explorer/testdata/operators/shortcircuit_and.carbon | 2 +- .../operators/shortcircuit_and_no_shortcircuit.carbon | 2 +- explorer/testdata/operators/shortcircuit_or.carbon | 2 +- .../operators/shortcircuit_or_no_shortcircuit.carbon | 2 +- explorer/testdata/operators/sub.carbon | 2 +- explorer/testdata/operators/sub_builtin.carbon | 2 +- .../testdata/optional/fail_optional_get_empty.carbon | 2 +- .../optional/init_optional_with_non_value.carbon | 2 +- .../testdata/optional/init_optional_with_value.carbon | 2 +- explorer/testdata/package/fail_missing.carbon | 2 +- explorer/testdata/package/with_library.carbon | 2 +- explorer/testdata/pointer/aliasing.carbon | 2 +- explorer/testdata/pointer/basic.carbon | 2 +- explorer/testdata/pointer/fail_delete_uninit.carbon | 2 +- .../pointer/fail_intrinsic_delete_no_args.carbon | 2 +- .../testdata/pointer/fail_intrinsic_delete_type.carbon | 2 +- .../testdata/pointer/fail_intrinsic_new_no_args.carbon | 2 +- .../pointer/fail_invalid_ptr_conversion1.carbon | 2 +- .../pointer/fail_invalid_ptr_conversion2.carbon | 2 +- explorer/testdata/pointer/fail_rvalue_addressof.carbon | 2 +- explorer/testdata/pointer/fail_use_after_free.carbon | 2 +- explorer/testdata/pointer/heap_alloc_lifetime.carbon | 2 +- explorer/testdata/pointer/intrinsic_new.carbon | 2 +- explorer/testdata/pointer/new_and_delete.carbon | 2 +- explorer/testdata/pointer/new_and_delete_class.carbon | 2 +- explorer/testdata/pointer/new_and_delete_fn.carbon | 2 +- explorer/testdata/pointer/pointer_to_type_like.carbon | 2 +- explorer/testdata/pointer/struct_pointer.carbon | 2 +- explorer/testdata/pointer/tuple_pointer.carbon | 2 +- explorer/testdata/print/associated_constant.carbon | 2 +- explorer/testdata/print/escaped_brace.carbon | 2 +- .../testdata/print/fail_call_at_compile_time.carbon | 2 +- explorer/testdata/print/fail_index_bounds0.carbon | 2 +- explorer/testdata/print/fail_index_bounds1.carbon | 2 +- explorer/testdata/print/fail_index_empty.carbon | 2 +- explorer/testdata/print/fail_index_incomplete.carbon | 2 +- explorer/testdata/print/fail_index_limit.carbon | 2 +- explorer/testdata/print/fail_index_negative.carbon | 2 +- explorer/testdata/print/fail_index_text.carbon | 2 +- .../testdata/print/fail_intrinsic_int_format.carbon | 2 +- explorer/testdata/print/fail_intrinsic_no_args.carbon | 2 +- .../testdata/print/fail_intrinsic_too_many_args.carbon | 2 +- explorer/testdata/print/fail_intrinsic_type.carbon | 2 +- explorer/testdata/print/fail_no_args.carbon | 2 +- explorer/testdata/print/fail_not_str.carbon | 2 +- explorer/testdata/print/fail_single_brace.carbon | 2 +- explorer/testdata/print/fail_too_many_args.carbon | 2 +- explorer/testdata/print/fail_type.carbon | 2 +- explorer/testdata/print/format_only.carbon | 2 +- explorer/testdata/print/i32.carbon | 2 +- explorer/testdata/print/long_index.carbon | 2 +- explorer/testdata/random/fail_empty_range.carbon | 2 +- explorer/testdata/random/fail_intrinsic_no_args.carbon | 2 +- explorer/testdata/random/fail_intrinsic_type0.carbon | 2 +- explorer/testdata/random/fail_intrinsic_type1.carbon | 2 +- explorer/testdata/random/fail_reverse_range.carbon | 2 +- explorer/testdata/random/max_range.carbon | 2 +- explorer/testdata/random/random.carbon | 2 +- explorer/testdata/return/convert_return_assoc.carbon | 2 +- explorer/testdata/return/convert_return_value.carbon | 2 +- explorer/testdata/return/explicit_empty.carbon | 2 +- .../return/fail_explicit_with_no_return.carbon | 2 +- .../return/fail_explicit_with_plain_return.carbon | 2 +- .../return/fail_implicit_with_explicit_return.carbon | 2 +- .../testdata/return/implicit_with_no_return.carbon | 2 +- .../testdata/return/implicit_with_plain_return.carbon | 2 +- explorer/testdata/string/basic.carbon | 2 +- explorer/testdata/string/block.carbon | 2 +- .../testdata/string/block_escaped_triple_quotes.carbon | 2 +- .../testdata/string/block_file_type_indicator.carbon | 2 +- .../string/fail_block_quotes_not_on_own_line.carbon | 2 +- explorer/testdata/string/fail_hex_lower.carbon | 2 +- explorer/testdata/string/fail_hex_truncated.carbon | 2 +- explorer/testdata/string/fail_invalid_escape.carbon | 2 +- explorer/testdata/string/fail_newline.carbon | 2 +- explorer/testdata/string/fail_octal.carbon | 2 +- .../fail_raw_block_more_hash_tags_on_left.carbon | 2 +- .../fail_raw_block_more_hash_tags_on_right.carbon | 2 +- .../fail_raw_block_quotes_not_on_own_line.carbon | 2 +- .../testdata/string/fail_raw_block_single_line.carbon | 2 +- .../string/fail_raw_more_hash_tags_on_left.carbon | 2 +- .../string/fail_raw_more_hash_tags_on_right.carbon | 2 +- explorer/testdata/string/fail_tab.carbon | 2 +- explorer/testdata/string/hex.carbon | 2 +- explorer/testdata/string/newline.carbon | 2 +- explorer/testdata/string/raw_basic.carbon | 2 +- .../testdata/string/raw_basic_multi_hashtag.carbon | 2 +- explorer/testdata/string/raw_block.carbon | 2 +- .../string/raw_block_escaped_back_slash.carbon | 2 +- .../string/raw_block_escaped_triple_quotes.carbon | 2 +- explorer/testdata/string/raw_nesting.carbon | 2 +- explorer/testdata/string/unicode.carbon | 2 +- explorer/testdata/struct/assign.carbon | 2 +- explorer/testdata/struct/assign_member.carbon | 2 +- explorer/testdata/struct/conversion.carbon | 2 +- explorer/testdata/struct/empty.carbon | 2 +- explorer/testdata/struct/ending_comma.carbon | 2 +- explorer/testdata/struct/equality.carbon | 2 +- explorer/testdata/struct/equality_false.carbon | 2 +- .../testdata/struct/fail_assign_different_types.carbon | 2 +- explorer/testdata/struct/fail_equality_type.carbon | 2 +- .../testdata/struct/fail_field_access_mismatch.carbon | 2 +- .../struct/fail_struct_literal_duplicate_member.carbon | 2 +- .../fail_struct_type_literal_duplicate_member.carbon | 2 +- .../testdata/struct/field_convertible_to_type.carbon | 2 +- explorer/testdata/struct/name_order.carbon | 2 +- explorer/testdata/struct/temp.carbon | 2 +- explorer/testdata/struct/var.carbon | 2 +- explorer/testdata/template/fail_name_lookup.carbon | 2 +- explorer/testdata/template/fail_no_member.carbon | 2 +- .../testdata/template/instantiate_from_generic.carbon | 2 +- .../testdata/template/instantiations_are_cached.carbon | 2 +- explorer/testdata/template/member_access.carbon | 2 +- explorer/testdata/template/name_lookup.carbon | 2 +- explorer/testdata/trace/context_main.carbon | 2 +- explorer/testdata/trace/phase_all.carbon | 2 +- .../trace/phase_control_flow_resolution.carbon | 2 +- explorer/testdata/trace/phase_declarations.carbon | 2 +- explorer/testdata/trace/phase_execution.carbon | 2 +- explorer/testdata/trace/phase_name_resolution.carbon | 2 +- explorer/testdata/trace/phase_source_program.carbon | 2 +- explorer/testdata/trace/phase_timing.carbon | 2 +- explorer/testdata/trace/phase_type_checking.carbon | 2 +- .../trace/phase_unformed_variables_resolution.carbon | 2 +- explorer/testdata/tuple/convert.carbon | 2 +- explorer/testdata/tuple/ending_comma.carbon | 2 +- explorer/testdata/tuple/equality.carbon | 2 +- explorer/testdata/tuple/equality_false.carbon | 2 +- explorer/testdata/tuple/fail_equality_type.carbon | 2 +- .../tuple/fail_implicit_convert_with_as.carbon | 2 +- explorer/testdata/tuple/fail_index.carbon | 2 +- explorer/testdata/tuple/fail_index_var.carbon | 2 +- .../tuple/fail_length_mismatch_with_auto.carbon | 2 +- .../testdata/tuple/fail_nontype_tuple_as_type.carbon | 2 +- explorer/testdata/tuple/fail_to_array.carbon | 2 +- explorer/testdata/tuple/fail_type_tuple_as_type.carbon | 2 +- explorer/testdata/tuple/fail_unexpected_tuple.carbon | 2 +- explorer/testdata/tuple/index.carbon | 2 +- explorer/testdata/tuple/indirect_to_type.carbon | 2 +- explorer/testdata/tuple/match.carbon | 2 +- explorer/testdata/tuple/match_nested.carbon | 2 +- explorer/testdata/tuple/no_ending_comma.carbon | 2 +- explorer/testdata/tuple/to_array.carbon | 2 +- explorer/testdata/tuple/to_type.carbon | 2 +- .../unformed/control_flow_defer_to_dynamic.carbon | 2 +- explorer/testdata/unformed/destroy_formed_only.carbon | 2 +- explorer/testdata/unformed/dynamic/fail_global.carbon | 2 +- explorer/testdata/unformed/dynamic/fail_param.carbon | 2 +- .../unformed/dynamic/fail_pattern_declare.carbon | 2 +- explorer/testdata/unformed/dynamic/fail_return.carbon | 2 +- .../testdata/unformed/dynamic/fail_returned_var.carbon | 2 +- .../testdata/unformed/dynamic/fail_rhs_assign.carbon | 2 +- explorer/testdata/unformed/fail_array.carbon | 2 +- explorer/testdata/unformed/fail_array_dynamic.carbon | 2 +- explorer/testdata/unformed/fail_base_access.carbon | 2 +- .../unformed/fail_compound_member_access.carbon | 2 +- .../unformed/fail_control_flow_defer_to_dynamic.carbon | 2 +- explorer/testdata/unformed/fail_if_cond.carbon | 2 +- explorer/testdata/unformed/fail_if_else.carbon | 2 +- explorer/testdata/unformed/fail_if_then.carbon | 2 +- explorer/testdata/unformed/fail_in_class.carbon | 2 +- .../unformed/fail_indirect_member_access.carbon | 2 +- explorer/testdata/unformed/fail_intrinsic.carbon | 2 +- .../testdata/unformed/global_assign_before_use.carbon | 2 +- explorer/testdata/unformed/global_escape.carbon | 2 +- .../unformed/global_unformed_without_use.carbon | 2 +- .../testdata/unformed/local_assign_before_use.carbon | 2 +- explorer/testdata/unformed/local_escape.carbon | 2 +- .../unformed/local_unformed_without_use.carbon | 2 +- explorer/testdata/unformed/pattern_declare.carbon | 2 +- .../unformed/returned_var_assign_before_use.carbon | 2 +- .../unformed/static/fail_compound_assign.carbon | 2 +- .../testdata/unformed/static/fail_field_value.carbon | 2 +- explorer/testdata/unformed/static/fail_if_cond.carbon | 2 +- explorer/testdata/unformed/static/fail_if_else.carbon | 2 +- explorer/testdata/unformed/static/fail_if_then.carbon | 2 +- .../testdata/unformed/static/fail_increment.carbon | 2 +- .../unformed/static/fail_local_pattern_declare.carbon | 2 +- .../unformed/static/fail_local_rhs_assign.carbon | 2 +- .../testdata/unformed/static/fail_match_clause.carbon | 2 +- .../unformed/static/fail_match_expression.carbon | 2 +- explorer/testdata/unformed/static/fail_param.carbon | 2 +- explorer/testdata/unformed/static/fail_return.carbon | 2 +- .../testdata/unformed/static/fail_returned_var.carbon | 2 +- explorer/testdata/unformed/static/fail_rhs_def.carbon | 2 +- .../unformed/static/fail_struct_member_access.carbon | 2 +- .../testdata/unformed/static/fail_while_body.carbon | 2 +- .../testdata/unformed/static/fail_while_cond.carbon | 2 +- .../testdata/var/global/fail_init_type_mismatch.carbon | 2 +- .../var/global/fail_instantiate_global_abstract.carbon | 2 +- .../var/global/fail_invalid_var_expression.carbon | 2 +- .../var/global/fail_modify_in_constant_expr.carbon | 2 +- explorer/testdata/var/global/fail_named_self.carbon | 2 +- .../testdata/var/global/fail_nested_binding.carbon | 2 +- explorer/testdata/var/global/fail_type_only.carbon | 2 +- .../testdata/var/global/implicit_conversion.carbon | 2 +- explorer/testdata/var/global/init_and_read.carbon | 2 +- explorer/testdata/var/global/init_from_function.carbon | 2 +- explorer/testdata/var/global/init_order.carbon | 2 +- explorer/testdata/var/global/shadowing.carbon | 2 +- explorer/testdata/var/global/write.carbon | 2 +- .../testdata/var/global/write_from_function.carbon | 2 +- explorer/testdata/var/local/destroyed.carbon | 2 +- .../var/local/fail_generic_binding_in_type.carbon | 2 +- explorer/testdata/var/local/fail_missing_intro.carbon | 2 +- .../testdata/var/local/fail_named_self_type.carbon | 2 +- .../var/local/fail_nested_binding_in_type.carbon | 2 +- .../testdata/var/local/fail_nested_type_only.carbon | 2 +- explorer/testdata/var/local/fail_type_only.carbon | 2 +- explorer/testdata/var/local/fail_value_as_type.carbon | 2 +- explorer/testdata/var/local/nested_binding.carbon | 2 +- explorer/testdata/var/local/placeholder.carbon | 2 +- ...eference_expr_binding_from_initializing_expr.carbon | 2 +- .../local/reference_expr_binding_from_reference.carbon | 2 +- .../var/local/reference_expr_binding_from_value.carbon | 2 +- .../var/local/reference_expr_from_initializing.carbon | 2 +- .../reference_expr_from_initializing_returned.carbon | 2 +- ...rence_expr_from_initializing_returned_nested.carbon | 2 +- .../var/local/reference_expr_from_reference.carbon | 2 +- .../var/local/reference_expr_from_value.carbon | 2 +- explorer/testdata/var/local/use_value.carbon | 2 +- .../var/returned/fail_duplicate_return_var.carbon | 2 +- .../var/returned/fail_missing_declaration.carbon | 2 +- .../testdata/var/returned/fail_missing_return.carbon | 2 +- .../fail_returned_var_mismatch_signature.carbon | 2 +- .../var/returned/fail_returned_var_multi_auto.carbon | 2 +- .../returned/fail_returned_var_type_mismatch.carbon | 2 +- .../returned/multiple_returned_var_control_flow.carbon | 2 +- .../var/returned/normal_return_control_flow.carbon | 2 +- .../testdata/var/returned/returned_var_auto.carbon | 2 +- .../testdata/var/returned/returned_var_basic.carbon | 2 +- .../var/returned/returned_var_name_lookup.carbon | 2 +- .../returned/returned_var_omitted_expression.carbon | 2 +- explorer/testdata/while/basic.carbon | 2 +- explorer/testdata/while/break.carbon | 2 +- explorer/testdata/while/continue.carbon | 2 +- explorer/testdata/while/convert_condition.carbon | 2 +- 858 files changed, 857 insertions(+), 867 deletions(-) delete mode 100755 explorer/autoupdate_testdata.sh diff --git a/explorer/autoupdate_testdata.sh b/explorer/autoupdate_testdata.sh deleted file mode 100755 index b6cdce8e0f43..000000000000 --- a/explorer/autoupdate_testdata.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -# 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 - -bazel run -c opt --experimental_convenience_symlinks=ignore \ - --ui_event_filters=-info,-stdout,-stderr,-finish \ - --test_sharding_strategy=disabled \ - //explorer:file_test -- --autoupdate diff --git a/explorer/testdata/addr/fail_method_let.carbon b/explorer/testdata/addr/fail_method_let.carbon index da0571ee4f1f..06adc83370d0 100644 --- a/explorer/testdata/addr/fail_method_let.carbon +++ b/explorer/testdata/addr/fail_method_let.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/addr/fail_method_self_misspelled.carbon b/explorer/testdata/addr/fail_method_self_misspelled.carbon index e4bf81001297..2810f847990a 100644 --- a/explorer/testdata/addr/fail_method_self_misspelled.carbon +++ b/explorer/testdata/addr/fail_method_self_misspelled.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/addr/fail_method_self_type.carbon b/explorer/testdata/addr/fail_method_self_type.carbon index 865454c96d55..783372a4a549 100644 --- a/explorer/testdata/addr/fail_method_self_type.carbon +++ b/explorer/testdata/addr/fail_method_self_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/addr/fail_missing_addr.carbon b/explorer/testdata/addr/fail_missing_addr.carbon index 8447350ea2b3..bc020ff6f454 100644 --- a/explorer/testdata/addr/fail_missing_addr.carbon +++ b/explorer/testdata/addr/fail_missing_addr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/addr/method.carbon b/explorer/testdata/addr/method.carbon index 0cde2e777399..8965daf678a0 100644 --- a/explorer/testdata/addr/method.carbon +++ b/explorer/testdata/addr/method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/addr/nested_method.carbon b/explorer/testdata/addr/nested_method.carbon index 706044bfa841..3ea9c84808fa 100644 --- a/explorer/testdata/addr/nested_method.carbon +++ b/explorer/testdata/addr/nested_method.carbon @@ -3,7 +3,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/alias_in_class.carbon b/explorer/testdata/alias/alias_in_class.carbon index 4c61be4391da..f27df762f838 100644 --- a/explorer/testdata/alias/alias_in_class.carbon +++ b/explorer/testdata/alias/alias_in_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/class_alias.carbon b/explorer/testdata/alias/class_alias.carbon index ec0daff29511..815aa2d5ecd1 100644 --- a/explorer/testdata/alias/class_alias.carbon +++ b/explorer/testdata/alias/class_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_alias_expression.carbon b/explorer/testdata/alias/fail_alias_expression.carbon index 4979b8351316..42196a40b44e 100644 --- a/explorer/testdata/alias/fail_alias_expression.carbon +++ b/explorer/testdata/alias/fail_alias_expression.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_alias_var.carbon b/explorer/testdata/alias/fail_alias_var.carbon index e8df86b1f52b..f2638871a9e2 100644 --- a/explorer/testdata/alias/fail_alias_var.carbon +++ b/explorer/testdata/alias/fail_alias_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_interface_method_as_class_member.carbon b/explorer/testdata/alias/fail_interface_method_as_class_member.carbon index 44798db9b8f3..1b07b8bac3b1 100644 --- a/explorer/testdata/alias/fail_interface_method_as_class_member.carbon +++ b/explorer/testdata/alias/fail_interface_method_as_class_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_namespace_alias_member.carbon b/explorer/testdata/alias/fail_namespace_alias_member.carbon index 88eaa753c2e5..ae9e089831a0 100644 --- a/explorer/testdata/alias/fail_namespace_alias_member.carbon +++ b/explorer/testdata/alias/fail_namespace_alias_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_self_alias.carbon b/explorer/testdata/alias/fail_self_alias.carbon index b96e08fc0cc0..f7256474395e 100644 --- a/explorer/testdata/alias/fail_self_alias.carbon +++ b/explorer/testdata/alias/fail_self_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_wrong_fn_alias_use.carbon b/explorer/testdata/alias/fail_wrong_fn_alias_use.carbon index 914675479276..f3459384ee57 100644 --- a/explorer/testdata/alias/fail_wrong_fn_alias_use.carbon +++ b/explorer/testdata/alias/fail_wrong_fn_alias_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_wrong_fn_alias_use_expr.carbon b/explorer/testdata/alias/fail_wrong_fn_alias_use_expr.carbon index d07362b440ac..abc5ce51a0ef 100644 --- a/explorer/testdata/alias/fail_wrong_fn_alias_use_expr.carbon +++ b/explorer/testdata/alias/fail_wrong_fn_alias_use_expr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_wrong_interface_alias_use.carbon b/explorer/testdata/alias/fail_wrong_interface_alias_use.carbon index b1837e0ca8de..7ef50390b949 100644 --- a/explorer/testdata/alias/fail_wrong_interface_alias_use.carbon +++ b/explorer/testdata/alias/fail_wrong_interface_alias_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/fail_wrong_namepsace_alias_use.carbon b/explorer/testdata/alias/fail_wrong_namepsace_alias_use.carbon index f328c4de1812..b4a637c738f1 100644 --- a/explorer/testdata/alias/fail_wrong_namepsace_alias_use.carbon +++ b/explorer/testdata/alias/fail_wrong_namepsace_alias_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/function_alias.carbon b/explorer/testdata/alias/function_alias.carbon index 8e3b513aeaeb..089d4ced724a 100644 --- a/explorer/testdata/alias/function_alias.carbon +++ b/explorer/testdata/alias/function_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/interface_alias.carbon b/explorer/testdata/alias/interface_alias.carbon index e5966df66957..024dec0cb3df 100644 --- a/explorer/testdata/alias/interface_alias.carbon +++ b/explorer/testdata/alias/interface_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/member_name_alias.carbon b/explorer/testdata/alias/member_name_alias.carbon index 340616d6241a..5c08633b5c5e 100644 --- a/explorer/testdata/alias/member_name_alias.carbon +++ b/explorer/testdata/alias/member_name_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/namespace_alias.carbon b/explorer/testdata/alias/namespace_alias.carbon index 6039c99e1e12..52b33472ff98 100644 --- a/explorer/testdata/alias/namespace_alias.carbon +++ b/explorer/testdata/alias/namespace_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/namespace_alias_recursive.carbon b/explorer/testdata/alias/namespace_alias_recursive.carbon index 3710c4c92e64..4a51384813f0 100644 --- a/explorer/testdata/alias/namespace_alias_recursive.carbon +++ b/explorer/testdata/alias/namespace_alias_recursive.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/struct_alias.carbon b/explorer/testdata/alias/struct_alias.carbon index 3ad727ec7c96..e1d41e9ca87b 100644 --- a/explorer/testdata/alias/struct_alias.carbon +++ b/explorer/testdata/alias/struct_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/alias/type_alias.carbon b/explorer/testdata/alias/type_alias.carbon index 9702e9224ec2..c5cf90e44b1c 100644 --- a/explorer/testdata/alias/type_alias.carbon +++ b/explorer/testdata/alias/type_alias.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/conversion.carbon b/explorer/testdata/array/conversion.carbon index 02ba9bbef94b..6e39b24a2630 100644 --- a/explorer/testdata/array/conversion.carbon +++ b/explorer/testdata/array/conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/deduce_size_from_array.carbon b/explorer/testdata/array/deduce_size_from_array.carbon index a345d94ef0f1..36315d732466 100644 --- a/explorer/testdata/array/deduce_size_from_array.carbon +++ b/explorer/testdata/array/deduce_size_from_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/deduce_size_from_array_destructured.carbon b/explorer/testdata/array/deduce_size_from_array_destructured.carbon index 4e9895d81c0c..24a890c4de50 100644 --- a/explorer/testdata/array/deduce_size_from_array_destructured.carbon +++ b/explorer/testdata/array/deduce_size_from_array_destructured.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/deduce_size_from_tuple.carbon b/explorer/testdata/array/deduce_size_from_tuple.carbon index bcdc7dd7fd69..bcf32dda2a33 100644 --- a/explorer/testdata/array/deduce_size_from_tuple.carbon +++ b/explorer/testdata/array/deduce_size_from_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/deduce_size_from_tuple_destructured.carbon b/explorer/testdata/array/deduce_size_from_tuple_destructured.carbon index f8181a5eb412..588ae7a7dd86 100644 --- a/explorer/testdata/array/deduce_size_from_tuple_destructured.carbon +++ b/explorer/testdata/array/deduce_size_from_tuple_destructured.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/deduce_zero_size_from_array.carbon b/explorer/testdata/array/deduce_zero_size_from_array.carbon index 646fef418b1f..dda09415c7b6 100644 --- a/explorer/testdata/array/deduce_zero_size_from_array.carbon +++ b/explorer/testdata/array/deduce_zero_size_from_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/deduce_zero_size_from_empty_tuple.carbon b/explorer/testdata/array/deduce_zero_size_from_empty_tuple.carbon index ece5e2ddfffa..b29015643c24 100644 --- a/explorer/testdata/array/deduce_zero_size_from_empty_tuple.carbon +++ b/explorer/testdata/array/deduce_zero_size_from_empty_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/element_convertible_to_type.carbon b/explorer/testdata/array/element_convertible_to_type.carbon index 97784750128b..2ed41c87e14d 100644 --- a/explorer/testdata/array/element_convertible_to_type.carbon +++ b/explorer/testdata/array/element_convertible_to_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_index.carbon b/explorer/testdata/array/fail_index.carbon index 1db423532beb..5600821c78a4 100644 --- a/explorer/testdata/array/fail_index.carbon +++ b/explorer/testdata/array/fail_index.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_index_deduced_size_from_array.carbon b/explorer/testdata/array/fail_index_deduced_size_from_array.carbon index 24293e1848d6..8bb6ddfc91c4 100644 --- a/explorer/testdata/array/fail_index_deduced_size_from_array.carbon +++ b/explorer/testdata/array/fail_index_deduced_size_from_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_index_deduced_size_from_tuple.carbon b/explorer/testdata/array/fail_index_deduced_size_from_tuple.carbon index 1676f9d3b8b3..bd649f3e271e 100644 --- a/explorer/testdata/array/fail_index_deduced_size_from_tuple.carbon +++ b/explorer/testdata/array/fail_index_deduced_size_from_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_negative_size.carbon b/explorer/testdata/array/fail_negative_size.carbon index 314e772510c1..ae90add49172 100644 --- a/explorer/testdata/array/fail_negative_size.carbon +++ b/explorer/testdata/array/fail_negative_size.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_print_uninitalized_array_element.carbon b/explorer/testdata/array/fail_print_uninitalized_array_element.carbon index da61deb605ae..bdf897164d40 100644 --- a/explorer/testdata/array/fail_print_uninitalized_array_element.carbon +++ b/explorer/testdata/array/fail_print_uninitalized_array_element.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/array/fail_size_mismatch.carbon b/explorer/testdata/array/fail_size_mismatch.carbon index 12f90d6a4d92..b416a1c8fb15 100644 --- a/explorer/testdata/array/fail_size_mismatch.carbon +++ b/explorer/testdata/array/fail_size_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_store_to_uninitialized_array.carbon b/explorer/testdata/array/fail_store_to_uninitialized_array.carbon index fafcf5d37787..1cd23acf47ca 100644 --- a/explorer/testdata/array/fail_store_to_uninitialized_array.carbon +++ b/explorer/testdata/array/fail_store_to_uninitialized_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_store_to_uninitialized_global_array.carbon b/explorer/testdata/array/fail_store_to_uninitialized_global_array.carbon index a6684f71480b..7d0f454b27ae 100644 --- a/explorer/testdata/array/fail_store_to_uninitialized_global_array.carbon +++ b/explorer/testdata/array/fail_store_to_uninitialized_global_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_different_subtuples_size.carbon b/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_different_subtuples_size.carbon index d6dba4311ff4..d9d07cb63478 100644 --- a/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_different_subtuples_size.carbon +++ b/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_different_subtuples_size.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_of_different_types.carbon b/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_of_different_types.carbon index 0720ebecf9ed..817eaa4a3114 100644 --- a/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_of_different_types.carbon +++ b/explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_of_different_types.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_deduce_nested_array_size_in_tuple_no_expression_to_deduce_from.carbon b/explorer/testdata/array/fail_to_deduce_nested_array_size_in_tuple_no_expression_to_deduce_from.carbon index e538e063032e..cc2b13a9e22f 100644 --- a/explorer/testdata/array/fail_to_deduce_nested_array_size_in_tuple_no_expression_to_deduce_from.carbon +++ b/explorer/testdata/array/fail_to_deduce_nested_array_size_in_tuple_no_expression_to_deduce_from.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_deduce_size_from_int.carbon b/explorer/testdata/array/fail_to_deduce_size_from_int.carbon index 2626c26dd741..96f891c9c94a 100644 --- a/explorer/testdata/array/fail_to_deduce_size_from_int.carbon +++ b/explorer/testdata/array/fail_to_deduce_size_from_int.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_deduce_size_from_tuple_of_different_types.carbon b/explorer/testdata/array/fail_to_deduce_size_from_tuple_of_different_types.carbon index ba7d1ccd7bb4..7735119d0ae8 100644 --- a/explorer/testdata/array/fail_to_deduce_size_from_tuple_of_different_types.carbon +++ b/explorer/testdata/array/fail_to_deduce_size_from_tuple_of_different_types.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_deduce_size_no_expression_to_deduce_from.carbon b/explorer/testdata/array/fail_to_deduce_size_no_expression_to_deduce_from.carbon index 9dff82336063..8353c781557e 100644 --- a/explorer/testdata/array/fail_to_deduce_size_no_expression_to_deduce_from.carbon +++ b/explorer/testdata/array/fail_to_deduce_size_no_expression_to_deduce_from.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_index_deduced_nested_size_from_array.carbon b/explorer/testdata/array/fail_to_index_deduced_nested_size_from_array.carbon index f7d235f53e43..1b8d8543b792 100644 --- a/explorer/testdata/array/fail_to_index_deduced_nested_size_from_array.carbon +++ b/explorer/testdata/array/fail_to_index_deduced_nested_size_from_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/fail_to_index_deduced_nested_size_from_tuple.carbon b/explorer/testdata/array/fail_to_index_deduced_nested_size_from_tuple.carbon index 18f13829811e..9869f324f4fe 100644 --- a/explorer/testdata/array/fail_to_index_deduced_nested_size_from_tuple.carbon +++ b/explorer/testdata/array/fail_to_index_deduced_nested_size_from_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/index.carbon b/explorer/testdata/array/index.carbon index 005b7dc6752d..78019a399013 100644 --- a/explorer/testdata/array/index.carbon +++ b/explorer/testdata/array/index.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/nested.carbon b/explorer/testdata/array/nested.carbon index 717f5d533944..29826e95338c 100644 --- a/explorer/testdata/array/nested.carbon +++ b/explorer/testdata/array/nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/nested_and_external_array_size_deduction_from_tuple.carbon b/explorer/testdata/array/nested_and_external_array_size_deduction_from_tuple.carbon index 803473d80f7b..975e3dfc24fd 100644 --- a/explorer/testdata/array/nested_and_external_array_size_deduction_from_tuple.carbon +++ b/explorer/testdata/array/nested_and_external_array_size_deduction_from_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/nested_array_size_deduction_from_array.carbon b/explorer/testdata/array/nested_array_size_deduction_from_array.carbon index 7a55530a8ab7..2e75523c3fc5 100644 --- a/explorer/testdata/array/nested_array_size_deduction_from_array.carbon +++ b/explorer/testdata/array/nested_array_size_deduction_from_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/nested_array_size_deduction_from_empty_tuple.carbon b/explorer/testdata/array/nested_array_size_deduction_from_empty_tuple.carbon index 2f7eb962f87c..a8a47e6c13fc 100644 --- a/explorer/testdata/array/nested_array_size_deduction_from_empty_tuple.carbon +++ b/explorer/testdata/array/nested_array_size_deduction_from_empty_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/nested_array_size_deduction_from_tuple.carbon b/explorer/testdata/array/nested_array_size_deduction_from_tuple.carbon index 9ac60a6e4a45..00b2cb8bfb1b 100644 --- a/explorer/testdata/array/nested_array_size_deduction_from_tuple.carbon +++ b/explorer/testdata/array/nested_array_size_deduction_from_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/nested_array_size_deduction_from_tuple_of_tuple_and_array.carbon b/explorer/testdata/array/nested_array_size_deduction_from_tuple_of_tuple_and_array.carbon index 8cf10b900a1d..cd89664590d0 100644 --- a/explorer/testdata/array/nested_array_size_deduction_from_tuple_of_tuple_and_array.carbon +++ b/explorer/testdata/array/nested_array_size_deduction_from_tuple_of_tuple_and_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/array/three_dim_array_size_deduction_from_tuple.carbon b/explorer/testdata/array/three_dim_array_size_deduction_from_tuple.carbon index 6d0182d9b2c3..41c1042d1a95 100644 --- a/explorer/testdata/array/three_dim_array_size_deduction_from_tuple.carbon +++ b/explorer/testdata/array/three_dim_array_size_deduction_from_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/as_same_type.carbon b/explorer/testdata/as/as_same_type.carbon index 189d90d10ed0..84822bd72255 100644 --- a/explorer/testdata/as/as_same_type.carbon +++ b/explorer/testdata/as/as_same_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/convert.carbon b/explorer/testdata/as/convert.carbon index 8c3a7652c5fb..663d00c40d40 100644 --- a/explorer/testdata/as/convert.carbon +++ b/explorer/testdata/as/convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_destination_not_type.carbon b/explorer/testdata/as/fail_destination_not_type.carbon index 383a6f1896a7..dd0943821ff1 100644 --- a/explorer/testdata/as/fail_destination_not_type.carbon +++ b/explorer/testdata/as/fail_destination_not_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_intrinsic_convert_no_args.carbon b/explorer/testdata/as/fail_intrinsic_convert_no_args.carbon index f38755de8191..b1c490ef2ae2 100644 --- a/explorer/testdata/as/fail_intrinsic_convert_no_args.carbon +++ b/explorer/testdata/as/fail_intrinsic_convert_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_intrinsic_convert_non_type.carbon b/explorer/testdata/as/fail_intrinsic_convert_non_type.carbon index 2bbad1757dcc..99f4d9993224 100644 --- a/explorer/testdata/as/fail_intrinsic_convert_non_type.carbon +++ b/explorer/testdata/as/fail_intrinsic_convert_non_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_intrinsic_convert_non_value.carbon b/explorer/testdata/as/fail_intrinsic_convert_non_value.carbon index e69f9698444f..33a963c6ddcd 100644 --- a/explorer/testdata/as/fail_intrinsic_convert_non_value.carbon +++ b/explorer/testdata/as/fail_intrinsic_convert_non_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_intrinsic_no_args.carbon b/explorer/testdata/as/fail_intrinsic_no_args.carbon index e0df4f6b4377..5fc55a4f7bc3 100644 --- a/explorer/testdata/as/fail_intrinsic_no_args.carbon +++ b/explorer/testdata/as/fail_intrinsic_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_intrinsic_non_type.carbon b/explorer/testdata/as/fail_intrinsic_non_type.carbon index 23d19fa0a135..62d288eaacd2 100644 --- a/explorer/testdata/as/fail_intrinsic_non_type.carbon +++ b/explorer/testdata/as/fail_intrinsic_non_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/fail_no_conversion.carbon b/explorer/testdata/as/fail_no_conversion.carbon index 003f652586a2..499acc55b07b 100644 --- a/explorer/testdata/as/fail_no_conversion.carbon +++ b/explorer/testdata/as/fail_no_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/implicit_as.carbon b/explorer/testdata/as/implicit_as.carbon index fa7085c42f32..fd5502e7e615 100644 --- a/explorer/testdata/as/implicit_as.carbon +++ b/explorer/testdata/as/implicit_as.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/as/struct_as_class.carbon b/explorer/testdata/as/struct_as_class.carbon index 65d3d0b3e13c..3a4a6a5a4a1f 100644 --- a/explorer/testdata/as/struct_as_class.carbon +++ b/explorer/testdata/as/struct_as_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assert/assert.carbon b/explorer/testdata/assert/assert.carbon index 1732b3efa037..8fa1dda33904 100644 --- a/explorer/testdata/assert/assert.carbon +++ b/explorer/testdata/assert/assert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assert/convert.carbon b/explorer/testdata/assert/convert.carbon index 4a3232c644e1..1c2b633965b4 100644 --- a/explorer/testdata/assert/convert.carbon +++ b/explorer/testdata/assert/convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assert/fail_assert.carbon b/explorer/testdata/assert/fail_assert.carbon index b0cc77a14cab..2c34a2020d06 100644 --- a/explorer/testdata/assert/fail_assert.carbon +++ b/explorer/testdata/assert/fail_assert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: "HALLO WELT" package ExplorerTest api; diff --git a/explorer/testdata/assert/fail_convert.carbon b/explorer/testdata/assert/fail_convert.carbon index 18cd6988a84a..7bb4469dc86b 100644 --- a/explorer/testdata/assert/fail_convert.carbon +++ b/explorer/testdata/assert/fail_convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: "Fail" package ExplorerTest api; diff --git a/explorer/testdata/assert/fail_intrinsic_bool_type.carbon b/explorer/testdata/assert/fail_intrinsic_bool_type.carbon index 6f4a8b44da30..15f18f28ebd4 100644 --- a/explorer/testdata/assert/fail_intrinsic_bool_type.carbon +++ b/explorer/testdata/assert/fail_intrinsic_bool_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assert/fail_intrinsic_no_args.carbon b/explorer/testdata/assert/fail_intrinsic_no_args.carbon index 9412b3502968..76d3c69ca922 100644 --- a/explorer/testdata/assert/fail_intrinsic_no_args.carbon +++ b/explorer/testdata/assert/fail_intrinsic_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assert/fail_intrinsic_no_convert.carbon b/explorer/testdata/assert/fail_intrinsic_no_convert.carbon index 717fd816a49f..ac299ae492ee 100644 --- a/explorer/testdata/assert/fail_intrinsic_no_convert.carbon +++ b/explorer/testdata/assert/fail_intrinsic_no_convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assert/fail_intrinsic_str_type.carbon b/explorer/testdata/assert/fail_intrinsic_str_type.carbon index 6b7f7d9de0ec..d881f54c4b91 100644 --- a/explorer/testdata/assert/fail_intrinsic_str_type.carbon +++ b/explorer/testdata/assert/fail_intrinsic_str_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assign/convert_rhs.carbon b/explorer/testdata/assign/convert_rhs.carbon index 0e0f043959c6..2f9a1462c71e 100644 --- a/explorer/testdata/assign/convert_rhs.carbon +++ b/explorer/testdata/assign/convert_rhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assign/destruct_original.carbon b/explorer/testdata/assign/destruct_original.carbon index e359ae2d1e22..efaf80e65bea 100644 --- a/explorer/testdata/assign/destruct_original.carbon +++ b/explorer/testdata/assign/destruct_original.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assign/reassign_original.carbon b/explorer/testdata/assign/reassign_original.carbon index 4a293ca7caea..5d83cf350f1d 100644 --- a/explorer/testdata/assign/reassign_original.carbon +++ b/explorer/testdata/assign/reassign_original.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/bug_multi_impl_scoping.carbon b/explorer/testdata/assoc_const/bug_multi_impl_scoping.carbon index 920921f5a2ad..08eabdd7b226 100644 --- a/explorer/testdata/assoc_const/bug_multi_impl_scoping.carbon +++ b/explorer/testdata/assoc_const/bug_multi_impl_scoping.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_anonymous.carbon b/explorer/testdata/assoc_const/fail_anonymous.carbon index f18d6e32194d..5f3490e46477 100644 --- a/explorer/testdata/assoc_const/fail_anonymous.carbon +++ b/explorer/testdata/assoc_const/fail_anonymous.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_different_type.carbon b/explorer/testdata/assoc_const/fail_different_type.carbon index 7435a39c8309..0ff57198c3d2 100644 --- a/explorer/testdata/assoc_const/fail_different_type.carbon +++ b/explorer/testdata/assoc_const/fail_different_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_different_value.carbon b/explorer/testdata/assoc_const/fail_different_value.carbon index 55917600e6a0..e3571668d901 100644 --- a/explorer/testdata/assoc_const/fail_different_value.carbon +++ b/explorer/testdata/assoc_const/fail_different_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_equal_indirectly.carbon b/explorer/testdata/assoc_const/fail_equal_indirectly.carbon index 5fa65e9a1d20..ada8e577354f 100644 --- a/explorer/testdata/assoc_const/fail_equal_indirectly.carbon +++ b/explorer/testdata/assoc_const/fail_equal_indirectly.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_equal_to_dependent_type.carbon b/explorer/testdata/assoc_const/fail_equal_to_dependent_type.carbon index 49262ef0b7a3..b3a134ede43f 100644 --- a/explorer/testdata/assoc_const/fail_equal_to_dependent_type.carbon +++ b/explorer/testdata/assoc_const/fail_equal_to_dependent_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_implied_constraints.carbon b/explorer/testdata/assoc_const/fail_implied_constraints.carbon index 5bec7498902c..bc77a7da7f2b 100644 --- a/explorer/testdata/assoc_const/fail_implied_constraints.carbon +++ b/explorer/testdata/assoc_const/fail_implied_constraints.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_incomplete_impl_1.carbon b/explorer/testdata/assoc_const/fail_incomplete_impl_1.carbon index 6fc78cae51f8..a282275f6417 100644 --- a/explorer/testdata/assoc_const/fail_incomplete_impl_1.carbon +++ b/explorer/testdata/assoc_const/fail_incomplete_impl_1.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_incomplete_impl_2.carbon b/explorer/testdata/assoc_const/fail_incomplete_impl_2.carbon index c28e620b92a0..10645bc52bce 100644 --- a/explorer/testdata/assoc_const/fail_incomplete_impl_2.carbon +++ b/explorer/testdata/assoc_const/fail_incomplete_impl_2.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_indirectly_equal.carbon b/explorer/testdata/assoc_const/fail_indirectly_equal.carbon index 89f343d92fb1..123c71147528 100644 --- a/explorer/testdata/assoc_const/fail_indirectly_equal.carbon +++ b/explorer/testdata/assoc_const/fail_indirectly_equal.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_match_in_deduction.carbon b/explorer/testdata/assoc_const/fail_match_in_deduction.carbon index 1e96daef965f..871f84458a90 100644 --- a/explorer/testdata/assoc_const/fail_match_in_deduction.carbon +++ b/explorer/testdata/assoc_const/fail_match_in_deduction.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // TODO: Should this work? diff --git a/explorer/testdata/assoc_const/fail_missing_equal.carbon b/explorer/testdata/assoc_const/fail_missing_equal.carbon index dea62d9af895..30d754ed68cd 100644 --- a/explorer/testdata/assoc_const/fail_missing_equal.carbon +++ b/explorer/testdata/assoc_const/fail_missing_equal.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_missing_rewrite.carbon b/explorer/testdata/assoc_const/fail_missing_rewrite.carbon index b9f2a8f7a34c..7987d8c2dd15 100644 --- a/explorer/testdata/assoc_const/fail_missing_rewrite.carbon +++ b/explorer/testdata/assoc_const/fail_missing_rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_multiple_deduction.carbon b/explorer/testdata/assoc_const/fail_multiple_deduction.carbon index 8562afb2a7fa..7b7fc3c4a188 100644 --- a/explorer/testdata/assoc_const/fail_multiple_deduction.carbon +++ b/explorer/testdata/assoc_const/fail_multiple_deduction.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_overspecified_impl.carbon b/explorer/testdata/assoc_const/fail_overspecified_impl.carbon index eeb9118028b8..276553d72075 100644 --- a/explorer/testdata/assoc_const/fail_overspecified_impl.carbon +++ b/explorer/testdata/assoc_const/fail_overspecified_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_redefined.carbon b/explorer/testdata/assoc_const/fail_redefined.carbon index 41d565fab3a6..3cc192c6a066 100644 --- a/explorer/testdata/assoc_const/fail_redefined.carbon +++ b/explorer/testdata/assoc_const/fail_redefined.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_rewrite_creates_infinite_type.carbon b/explorer/testdata/assoc_const/fail_rewrite_creates_infinite_type.carbon index ad504f2fa615..c4aa4327f203 100644 --- a/explorer/testdata/assoc_const/fail_rewrite_creates_infinite_type.carbon +++ b/explorer/testdata/assoc_const/fail_rewrite_creates_infinite_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_rewrite_cycle.carbon b/explorer/testdata/assoc_const/fail_rewrite_cycle.carbon index 35cc00b22348..84d46ab6ef08 100644 --- a/explorer/testdata/assoc_const/fail_rewrite_cycle.carbon +++ b/explorer/testdata/assoc_const/fail_rewrite_cycle.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_rewrite_depends_on_later_rewrite.carbon b/explorer/testdata/assoc_const/fail_rewrite_depends_on_later_rewrite.carbon index c79bf7dbd5ce..081ef7f059c9 100644 --- a/explorer/testdata/assoc_const/fail_rewrite_depends_on_later_rewrite.carbon +++ b/explorer/testdata/assoc_const/fail_rewrite_depends_on_later_rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_1.carbon b/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_1.carbon index 294069085bbe..78ba223835c1 100644 --- a/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_1.carbon +++ b/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_1.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_2.carbon b/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_2.carbon index 92e86118686d..f7c01d29f65a 100644 --- a/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_2.carbon +++ b/explorer/testdata/assoc_const/fail_simple_rewrite_cycle_2.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_unknown_value.carbon b/explorer/testdata/assoc_const/fail_unknown_value.carbon index 4f27ca31038c..d52f2a4dde09 100644 --- a/explorer/testdata/assoc_const/fail_unknown_value.carbon +++ b/explorer/testdata/assoc_const/fail_unknown_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/fail_unknown_value_specified_in_constraint.carbon b/explorer/testdata/assoc_const/fail_unknown_value_specified_in_constraint.carbon index 725c7d1c9ca3..5ab2754f1fc6 100644 --- a/explorer/testdata/assoc_const/fail_unknown_value_specified_in_constraint.carbon +++ b/explorer/testdata/assoc_const/fail_unknown_value_specified_in_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/impl_lookup.carbon b/explorer/testdata/assoc_const/impl_lookup.carbon index 962e4591b062..080904cdb2ea 100644 --- a/explorer/testdata/assoc_const/impl_lookup.carbon +++ b/explorer/testdata/assoc_const/impl_lookup.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/impl_used_by_later_rewrite.carbon b/explorer/testdata/assoc_const/impl_used_by_later_rewrite.carbon index 506a85aa2440..90ded815e464 100644 --- a/explorer/testdata/assoc_const/impl_used_by_later_rewrite.carbon +++ b/explorer/testdata/assoc_const/impl_used_by_later_rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/implement.carbon b/explorer/testdata/assoc_const/implement.carbon index 4f86808b5a1e..2f72c4a657fd 100644 --- a/explorer/testdata/assoc_const/implement.carbon +++ b/explorer/testdata/assoc_const/implement.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/lookup_in_rewrite.carbon b/explorer/testdata/assoc_const/lookup_in_rewrite.carbon index a7ece2a9af08..6b3f2041c8e0 100644 --- a/explorer/testdata/assoc_const/lookup_in_rewrite.carbon +++ b/explorer/testdata/assoc_const/lookup_in_rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/member_of_value.carbon b/explorer/testdata/assoc_const/member_of_value.carbon index 63e87aa71874..896036a3e33e 100644 --- a/explorer/testdata/assoc_const/member_of_value.carbon +++ b/explorer/testdata/assoc_const/member_of_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/pass_equal_to_rewrite.carbon b/explorer/testdata/assoc_const/pass_equal_to_rewrite.carbon index f079ff0a565d..bb0c25099127 100644 --- a/explorer/testdata/assoc_const/pass_equal_to_rewrite.carbon +++ b/explorer/testdata/assoc_const/pass_equal_to_rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/pass_rewrite_to_equal.carbon b/explorer/testdata/assoc_const/pass_rewrite_to_equal.carbon index 57c77a271a67..a698828d0430 100644 --- a/explorer/testdata/assoc_const/pass_rewrite_to_equal.carbon +++ b/explorer/testdata/assoc_const/pass_rewrite_to_equal.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/resolve_rewrites.carbon b/explorer/testdata/assoc_const/resolve_rewrites.carbon index 747c13b4bde2..74d4210eed05 100644 --- a/explorer/testdata/assoc_const/resolve_rewrites.carbon +++ b/explorer/testdata/assoc_const/resolve_rewrites.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/rewrite_depends_on_prior_rewrite.carbon b/explorer/testdata/assoc_const/rewrite_depends_on_prior_rewrite.carbon index 2b7b7f8ee8ed..1b3a9891f939 100644 --- a/explorer/testdata/assoc_const/rewrite_depends_on_prior_rewrite.carbon +++ b/explorer/testdata/assoc_const/rewrite_depends_on_prior_rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/rewrite_interface_params.carbon b/explorer/testdata/assoc_const/rewrite_interface_params.carbon index 2f3e19e39f6c..cdd60aaf9aa7 100644 --- a/explorer/testdata/assoc_const/rewrite_interface_params.carbon +++ b/explorer/testdata/assoc_const/rewrite_interface_params.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/rewrite_large_type.carbon b/explorer/testdata/assoc_const/rewrite_large_type.carbon index ad3b217f2dce..f72ddd92db4a 100644 --- a/explorer/testdata/assoc_const/rewrite_large_type.carbon +++ b/explorer/testdata/assoc_const/rewrite_large_type.carbon @@ -3,7 +3,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // // This doesn't check trace output because it's too slow with it. -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/simple_constraint.carbon b/explorer/testdata/assoc_const/simple_constraint.carbon index c05b4e2f8d40..30aae7e8259c 100644 --- a/explorer/testdata/assoc_const/simple_constraint.carbon +++ b/explorer/testdata/assoc_const/simple_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/assoc_const/simple_equality.carbon b/explorer/testdata/assoc_const/simple_equality.carbon index c4eb2f3e2a71..bed2fbab2b2e 100644 --- a/explorer/testdata/assoc_const/simple_equality.carbon +++ b/explorer/testdata/assoc_const/simple_equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/auto/fail_use_in_init.carbon b/explorer/testdata/auto/fail_use_in_init.carbon index 0f0c2976f87e..47a6dd53b535 100644 --- a/explorer/testdata/auto/fail_use_in_init.carbon +++ b/explorer/testdata/auto/fail_use_in_init.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/addition.carbon b/explorer/testdata/basic_syntax/addition.carbon index 3dc3ddfce745..dd7bbc651333 100644 --- a/explorer/testdata/basic_syntax/addition.carbon +++ b/explorer/testdata/basic_syntax/addition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/choice.carbon b/explorer/testdata/basic_syntax/choice.carbon index 2b85dfb4dcca..6d2e32ca95c0 100644 --- a/explorer/testdata/basic_syntax/choice.carbon +++ b/explorer/testdata/basic_syntax/choice.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_alternative_not_type.carbon b/explorer/testdata/basic_syntax/fail_alternative_not_type.carbon index fe1ed983a76e..e75836896b30 100644 --- a/explorer/testdata/basic_syntax/fail_alternative_not_type.carbon +++ b/explorer/testdata/basic_syntax/fail_alternative_not_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_alternative_uses_choice.carbon b/explorer/testdata/basic_syntax/fail_alternative_uses_choice.carbon index c4b9fd8cf280..5d21e1baa322 100644 --- a/explorer/testdata/basic_syntax/fail_alternative_uses_choice.carbon +++ b/explorer/testdata/basic_syntax/fail_alternative_uses_choice.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_assign_to_function.carbon b/explorer/testdata/basic_syntax/fail_assign_to_function.carbon index e7ab425ff00e..dae9858ff5f0 100644 --- a/explorer/testdata/basic_syntax/fail_assign_to_function.carbon +++ b/explorer/testdata/basic_syntax/fail_assign_to_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_assign_to_rval.carbon b/explorer/testdata/basic_syntax/fail_assign_to_rval.carbon index e45394e4e731..14c254bee8ed 100644 --- a/explorer/testdata/basic_syntax/fail_assign_to_rval.carbon +++ b/explorer/testdata/basic_syntax/fail_assign_to_rval.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_block.carbon b/explorer/testdata/basic_syntax/fail_block.carbon index 2e0266db484d..06c0bd270062 100644 --- a/explorer/testdata/basic_syntax/fail_block.carbon +++ b/explorer/testdata/basic_syntax/fail_block.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_choice_extra_parens.carbon b/explorer/testdata/basic_syntax/fail_choice_extra_parens.carbon index c1a25786a984..954322b28a1e 100644 --- a/explorer/testdata/basic_syntax/fail_choice_extra_parens.carbon +++ b/explorer/testdata/basic_syntax/fail_choice_extra_parens.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_choice_no_parens.carbon b/explorer/testdata/basic_syntax/fail_choice_no_parens.carbon index 276c852e8fca..73d7d7feb3ca 100644 --- a/explorer/testdata/basic_syntax/fail_choice_no_parens.carbon +++ b/explorer/testdata/basic_syntax/fail_choice_no_parens.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_choice_pattern_extra_parens.carbon b/explorer/testdata/basic_syntax/fail_choice_pattern_extra_parens.carbon index 9c0d7bbe661a..29a3855ec762 100644 --- a/explorer/testdata/basic_syntax/fail_choice_pattern_extra_parens.carbon +++ b/explorer/testdata/basic_syntax/fail_choice_pattern_extra_parens.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_choice_pattern_no_parens.carbon b/explorer/testdata/basic_syntax/fail_choice_pattern_no_parens.carbon index a51011576abe..82b91fb9d806 100644 --- a/explorer/testdata/basic_syntax/fail_choice_pattern_no_parens.carbon +++ b/explorer/testdata/basic_syntax/fail_choice_pattern_no_parens.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_compare_precedence.carbon b/explorer/testdata/basic_syntax/fail_compare_precedence.carbon index 285ea47d6e6c..75c51e6fee59 100644 --- a/explorer/testdata/basic_syntax/fail_compare_precedence.carbon +++ b/explorer/testdata/basic_syntax/fail_compare_precedence.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_invalid_char.carbon b/explorer/testdata/basic_syntax/fail_invalid_char.carbon index c83b78705689..421fc9c1fe7a 100644 --- a/explorer/testdata/basic_syntax/fail_invalid_char.carbon +++ b/explorer/testdata/basic_syntax/fail_invalid_char.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: SYNTAX ERROR: fail_invalid_char.carbon:[[@LINE+1]]: invalid character '\xEF' in source file. � diff --git a/explorer/testdata/basic_syntax/fail_invalid_integer.carbon b/explorer/testdata/basic_syntax/fail_invalid_integer.carbon index 86940b5e3a33..a0eaf91d9f21 100644 --- a/explorer/testdata/basic_syntax/fail_invalid_integer.carbon +++ b/explorer/testdata/basic_syntax/fail_invalid_integer.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_invalid_integer_type.carbon b/explorer/testdata/basic_syntax/fail_invalid_integer_type.carbon index 2c6aee5f8036..9e83d9dc810e 100644 --- a/explorer/testdata/basic_syntax/fail_invalid_integer_type.carbon +++ b/explorer/testdata/basic_syntax/fail_invalid_integer_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_unimplemented_example.carbon b/explorer/testdata/basic_syntax/fail_unimplemented_example.carbon index cb952f94adc2..2700697cd190 100644 --- a/explorer/testdata/basic_syntax/fail_unimplemented_example.carbon +++ b/explorer/testdata/basic_syntax/fail_unimplemented_example.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_unknown_intrinsic.carbon b/explorer/testdata/basic_syntax/fail_unknown_intrinsic.carbon index c2bb5f341916..63fb21050662 100644 --- a/explorer/testdata/basic_syntax/fail_unknown_intrinsic.carbon +++ b/explorer/testdata/basic_syntax/fail_unknown_intrinsic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/fail_unsupported_integer_type.carbon b/explorer/testdata/basic_syntax/fail_unsupported_integer_type.carbon index fff463f9d723..1a3a480c365c 100644 --- a/explorer/testdata/basic_syntax/fail_unsupported_integer_type.carbon +++ b/explorer/testdata/basic_syntax/fail_unsupported_integer_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/print_allocs.carbon b/explorer/testdata/basic_syntax/print_allocs.carbon index dc4e9317e006..5d685b05c375 100644 --- a/explorer/testdata/basic_syntax/print_allocs.carbon +++ b/explorer/testdata/basic_syntax/print_allocs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/print_allocs_empty.carbon b/explorer/testdata/basic_syntax/print_allocs_empty.carbon index 17915a623a95..f54c7d1742b0 100644 --- a/explorer/testdata/basic_syntax/print_allocs_empty.carbon +++ b/explorer/testdata/basic_syntax/print_allocs_empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/record.carbon b/explorer/testdata/basic_syntax/record.carbon index eb83c06d0960..01df79d53a49 100644 --- a/explorer/testdata/basic_syntax/record.carbon +++ b/explorer/testdata/basic_syntax/record.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/star.carbon b/explorer/testdata/basic_syntax/star.carbon index eae05ece7664..890e0129b63b 100644 --- a/explorer/testdata/basic_syntax/star.carbon +++ b/explorer/testdata/basic_syntax/star.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/basic_syntax/zero.carbon b/explorer/testdata/basic_syntax/zero.carbon index eccc2eb8cb9b..899830ec3b32 100644 --- a/explorer/testdata/basic_syntax/zero.carbon +++ b/explorer/testdata/basic_syntax/zero.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/block/empty.carbon b/explorer/testdata/block/empty.carbon index ddf771fa1b90..7d9b5e64117a 100644 --- a/explorer/testdata/block/empty.carbon +++ b/explorer/testdata/block/empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/block/shadowing.carbon b/explorer/testdata/block/shadowing.carbon index 5290f434aac4..b84b39d31618 100644 --- a/explorer/testdata/block/shadowing.carbon +++ b/explorer/testdata/block/shadowing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/choice/fail_recursive_use.carbon b/explorer/testdata/choice/fail_recursive_use.carbon index b80256ab8c7d..3f40eda08931 100644 --- a/explorer/testdata/choice/fail_recursive_use.carbon +++ b/explorer/testdata/choice/fail_recursive_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/choice/generic_choice_multiple_template_arguments.carbon b/explorer/testdata/choice/generic_choice_multiple_template_arguments.carbon index a63cec70091c..55cfb8f4a0b8 100644 --- a/explorer/testdata/choice/generic_choice_multiple_template_arguments.carbon +++ b/explorer/testdata/choice/generic_choice_multiple_template_arguments.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/choice/generic_choice_nested_in_template_class.carbon b/explorer/testdata/choice/generic_choice_nested_in_template_class.carbon index 839552f1e12a..b1991246b87c 100644 --- a/explorer/testdata/choice/generic_choice_nested_in_template_class.carbon +++ b/explorer/testdata/choice/generic_choice_nested_in_template_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/choice/generic_choice_simple_assignment.carbon b/explorer/testdata/choice/generic_choice_simple_assignment.carbon index de565333adaa..c806d1c27d5b 100644 --- a/explorer/testdata/choice/generic_choice_simple_assignment.carbon +++ b/explorer/testdata/choice/generic_choice_simple_assignment.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/choice/mixed_arity.carbon b/explorer/testdata/choice/mixed_arity.carbon index b758a3ca6c65..8b1877c20d77 100644 --- a/explorer/testdata/choice/mixed_arity.carbon +++ b/explorer/testdata/choice/mixed_arity.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/choice/type_of_type.carbon b/explorer/testdata/choice/type_of_type.carbon index 4c20e3c7ed7c..8611bb09e9d1 100644 --- a/explorer/testdata/choice/type_of_type.carbon +++ b/explorer/testdata/choice/type_of_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/abstract_class.carbon b/explorer/testdata/class/abstract_class.carbon index e59eb0795fea..2d74dbb268a4 100644 --- a/explorer/testdata/class/abstract_class.carbon +++ b/explorer/testdata/class/abstract_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/abstract_method.carbon b/explorer/testdata/class/abstract_method.carbon index e8ecc02ba64e..30e4cfa1046c 100644 --- a/explorer/testdata/class/abstract_method.carbon +++ b/explorer/testdata/class/abstract_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // RUN: %{explorer-run} // RUN: %{explorer-run-trace} diff --git a/explorer/testdata/class/abstract_method_base_instance.carbon b/explorer/testdata/class/abstract_method_base_instance.carbon index afc7b70ea433..08e298234a4c 100644 --- a/explorer/testdata/class/abstract_method_base_instance.carbon +++ b/explorer/testdata/class/abstract_method_base_instance.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // RUN: %{explorer-run} // RUN: %{explorer-run-trace} diff --git a/explorer/testdata/class/assign.carbon b/explorer/testdata/class/assign.carbon index 85326acce678..a47984f99b3a 100644 --- a/explorer/testdata/class/assign.carbon +++ b/explorer/testdata/class/assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/assign_member.carbon b/explorer/testdata/class/assign_member.carbon index 0abd86fdb236..6536ac6dc0a1 100644 --- a/explorer/testdata/class/assign_member.carbon +++ b/explorer/testdata/class/assign_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/base_constructor.carbon b/explorer/testdata/class/base_constructor.carbon index b2e1bbc2de85..fc947e03c92e 100644 --- a/explorer/testdata/class/base_constructor.carbon +++ b/explorer/testdata/class/base_constructor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/bound_method.carbon b/explorer/testdata/class/bound_method.carbon index b05292998b86..a8c0b79ea414 100644 --- a/explorer/testdata/class/bound_method.carbon +++ b/explorer/testdata/class/bound_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/bound_method_compound_member_access.carbon b/explorer/testdata/class/bound_method_compound_member_access.carbon index 4bff16799fc4..0f7fdeef9ee5 100644 --- a/explorer/testdata/class/bound_method_compound_member_access.carbon +++ b/explorer/testdata/class/bound_method_compound_member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_function.carbon b/explorer/testdata/class/class_function.carbon index e5f599d6d5b7..2a49b5015630 100644 --- a/explorer/testdata/class/class_function.carbon +++ b/explorer/testdata/class/class_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_function_from_instance.carbon b/explorer/testdata/class/class_function_from_instance.carbon index 60b397d6e9fe..c894d7976f53 100644 --- a/explorer/testdata/class/class_function_from_instance.carbon +++ b/explorer/testdata/class/class_function_from_instance.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_function_self.carbon b/explorer/testdata/class/class_function_self.carbon index fcb08c3b611c..6591b034d934 100644 --- a/explorer/testdata/class/class_function_self.carbon +++ b/explorer/testdata/class/class_function_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_function_value.carbon b/explorer/testdata/class/class_function_value.carbon index 54818d85f0f7..5c7a5d8b1bec 100644 --- a/explorer/testdata/class/class_function_value.carbon +++ b/explorer/testdata/class/class_function_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_inheritance_function_call.carbon b/explorer/testdata/class/class_inheritance_function_call.carbon index a2f7ce40d20a..5e0c45eb587c 100644 --- a/explorer/testdata/class/class_inheritance_function_call.carbon +++ b/explorer/testdata/class/class_inheritance_function_call.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_inheritance_methods.carbon b/explorer/testdata/class/class_inheritance_methods.carbon index 041f0fa4cc98..aac2785410e4 100644 --- a/explorer/testdata/class/class_inheritance_methods.carbon +++ b/explorer/testdata/class/class_inheritance_methods.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_inheritance_multiple.carbon b/explorer/testdata/class/class_inheritance_multiple.carbon index aef5b008b4d4..30d3abd07fab 100644 --- a/explorer/testdata/class/class_inheritance_multiple.carbon +++ b/explorer/testdata/class/class_inheritance_multiple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_inheritance_shadow.carbon b/explorer/testdata/class/class_inheritance_shadow.carbon index 0138e473e793..47812acc3b88 100644 --- a/explorer/testdata/class/class_inheritance_shadow.carbon +++ b/explorer/testdata/class/class_inheritance_shadow.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_inheritance_variables.carbon b/explorer/testdata/class/class_inheritance_variables.carbon index 1083df547c81..fd56628e076c 100644 --- a/explorer/testdata/class/class_inheritance_variables.carbon +++ b/explorer/testdata/class/class_inheritance_variables.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_subtyping_argument.carbon b/explorer/testdata/class/class_subtyping_argument.carbon index b4b5b567b285..4633b69b8e8e 100644 --- a/explorer/testdata/class/class_subtyping_argument.carbon +++ b/explorer/testdata/class/class_subtyping_argument.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_subtyping_basic.carbon b/explorer/testdata/class/class_subtyping_basic.carbon index d467570f1d72..b71c86920081 100644 --- a/explorer/testdata/class/class_subtyping_basic.carbon +++ b/explorer/testdata/class/class_subtyping_basic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/class_subtyping_multiple.carbon b/explorer/testdata/class/class_subtyping_multiple.carbon index 40f1fdc32f12..bbeea0a221a1 100644 --- a/explorer/testdata/class/class_subtyping_multiple.carbon +++ b/explorer/testdata/class/class_subtyping_multiple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/conversion.carbon b/explorer/testdata/class/conversion.carbon index 30a6dc35a406..e45145f7dfd8 100644 --- a/explorer/testdata/class/conversion.carbon +++ b/explorer/testdata/class/conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/empty_class.carbon b/explorer/testdata/class/empty_class.carbon index 5b26ed8fda06..7af904d9c3bf 100644 --- a/explorer/testdata/class/empty_class.carbon +++ b/explorer/testdata/class/empty_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_abstract_method_abstract_class.carbon b/explorer/testdata/class/fail_abstract_method_abstract_class.carbon index fe1377bac876..69f4d1c600d8 100644 --- a/explorer/testdata/class/fail_abstract_method_abstract_class.carbon +++ b/explorer/testdata/class/fail_abstract_method_abstract_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // RUN: %{not} %{explorer-run} // RUN: %{not} %{explorer-run-trace} diff --git a/explorer/testdata/class/fail_abstract_method_base_class.carbon b/explorer/testdata/class/fail_abstract_method_base_class.carbon index 009d6507c755..37e22e6f4eae 100644 --- a/explorer/testdata/class/fail_abstract_method_base_class.carbon +++ b/explorer/testdata/class/fail_abstract_method_base_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // RUN: %{not} %{explorer-run} // RUN: %{not} %{explorer-run-trace} diff --git a/explorer/testdata/class/fail_abstract_method_body.carbon b/explorer/testdata/class/fail_abstract_method_body.carbon index e9c827d99f83..3dc9a26780b3 100644 --- a/explorer/testdata/class/fail_abstract_method_body.carbon +++ b/explorer/testdata/class/fail_abstract_method_body.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // RUN: %{not} %{explorer-run} // RUN: %{not} %{explorer-run-trace} diff --git a/explorer/testdata/class/fail_abstract_method_final_impl.carbon b/explorer/testdata/class/fail_abstract_method_final_impl.carbon index e2d1e4046ad4..65a49cb7198c 100644 --- a/explorer/testdata/class/fail_abstract_method_final_impl.carbon +++ b/explorer/testdata/class/fail_abstract_method_final_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_abstract_method_non_abstract_class.carbon b/explorer/testdata/class/fail_abstract_method_non_abstract_class.carbon index c3e1862a49b3..a6d6b0c2a8b9 100644 --- a/explorer/testdata/class/fail_abstract_method_non_abstract_class.carbon +++ b/explorer/testdata/class/fail_abstract_method_non_abstract_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // RUN: %{not} %{explorer-run} // RUN: %{not} %{explorer-run-trace} diff --git a/explorer/testdata/class/fail_call_method_before_typecheck.carbon b/explorer/testdata/class/fail_call_method_before_typecheck.carbon index b54bc69f2a75..bb128856d375 100644 --- a/explorer/testdata/class/fail_call_method_before_typecheck.carbon +++ b/explorer/testdata/class/fail_call_method_before_typecheck.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_call_undefined_method.carbon b/explorer/testdata/class/fail_call_undefined_method.carbon index 37998dabe8b9..cffa11b01185 100644 --- a/explorer/testdata/class/fail_call_undefined_method.carbon +++ b/explorer/testdata/class/fail_call_undefined_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_circular_inheritance.carbon b/explorer/testdata/class/fail_circular_inheritance.carbon index 70c89edd1eac..6b5cad60938a 100644 --- a/explorer/testdata/class/fail_circular_inheritance.carbon +++ b/explorer/testdata/class/fail_circular_inheritance.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_class_named_self.carbon b/explorer/testdata/class/fail_class_named_self.carbon index f6cdf2b263c0..458f326c0804 100644 --- a/explorer/testdata/class/fail_class_named_self.carbon +++ b/explorer/testdata/class/fail_class_named_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_direct_base_class_init.carbon b/explorer/testdata/class/fail_direct_base_class_init.carbon index 599ba361527e..12b455925d96 100644 --- a/explorer/testdata/class/fail_direct_base_class_init.carbon +++ b/explorer/testdata/class/fail_direct_base_class_init.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_extend_after_var.carbon b/explorer/testdata/class/fail_extend_after_var.carbon index c577b03c8889..a4fe41ecae51 100644 --- a/explorer/testdata/class/fail_extend_after_var.carbon +++ b/explorer/testdata/class/fail_extend_after_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_extend_final_class.carbon b/explorer/testdata/class/fail_extend_final_class.carbon index 1f402c50a9e3..2899f10cdcf2 100644 --- a/explorer/testdata/class/fail_extend_final_class.carbon +++ b/explorer/testdata/class/fail_extend_final_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_extend_member_class.carbon b/explorer/testdata/class/fail_extend_member_class.carbon index 3995702861ce..58eda57a3974 100644 --- a/explorer/testdata/class/fail_extend_member_class.carbon +++ b/explorer/testdata/class/fail_extend_member_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_extend_non_class.carbon b/explorer/testdata/class/fail_extend_non_class.carbon index 8f929ed1e2d0..adb0e21959bc 100644 --- a/explorer/testdata/class/fail_extend_non_class.carbon +++ b/explorer/testdata/class/fail_extend_non_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_extend_twice.carbon b/explorer/testdata/class/fail_extend_twice.carbon index 10ae94595f6d..c56bdfec5a56 100644 --- a/explorer/testdata/class/fail_extend_twice.carbon +++ b/explorer/testdata/class/fail_extend_twice.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_field_access_mismatch.carbon b/explorer/testdata/class/fail_field_access_mismatch.carbon index ef311c738af6..765508ef1e7a 100644 --- a/explorer/testdata/class/fail_field_access_mismatch.carbon +++ b/explorer/testdata/class/fail_field_access_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_field_access_mismatch_base.carbon b/explorer/testdata/class/fail_field_access_mismatch_base.carbon index e36db8ca84ed..d09dd45bc4fa 100644 --- a/explorer/testdata/class/fail_field_access_mismatch_base.carbon +++ b/explorer/testdata/class/fail_field_access_mismatch_base.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_field_assign_mismatch_base.carbon b/explorer/testdata/class/fail_field_assign_mismatch_base.carbon index 0028ea6bc8dd..a17ba7264664 100644 --- a/explorer/testdata/class/fail_field_assign_mismatch_base.carbon +++ b/explorer/testdata/class/fail_field_assign_mismatch_base.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_field_mismatch.carbon b/explorer/testdata/class/fail_field_mismatch.carbon index d1ccdf71f746..c04f868a763b 100644 --- a/explorer/testdata/class/fail_field_mismatch.carbon +++ b/explorer/testdata/class/fail_field_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_field_missing.carbon b/explorer/testdata/class/fail_field_missing.carbon index 5ccbb74f7401..da85d17d6dc1 100644 --- a/explorer/testdata/class/fail_field_missing.carbon +++ b/explorer/testdata/class/fail_field_missing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_impl_method_not_existing.carbon b/explorer/testdata/class/fail_impl_method_not_existing.carbon index c30a4ab10102..fc3251a18e95 100644 --- a/explorer/testdata/class/fail_impl_method_not_existing.carbon +++ b/explorer/testdata/class/fail_impl_method_not_existing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_impl_method_not_virtual.carbon b/explorer/testdata/class/fail_impl_method_not_virtual.carbon index c845993d8ada..c54e5709d52c 100644 --- a/explorer/testdata/class/fail_impl_method_not_virtual.carbon +++ b/explorer/testdata/class/fail_impl_method_not_virtual.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_incomplete_in_conversion.carbon b/explorer/testdata/class/fail_incomplete_in_conversion.carbon index 39fbd6ebbe31..13a61b3415b2 100644 --- a/explorer/testdata/class/fail_incomplete_in_conversion.carbon +++ b/explorer/testdata/class/fail_incomplete_in_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_instantiate_abstract_class_constructor.carbon b/explorer/testdata/class/fail_instantiate_abstract_class_constructor.carbon index febc0294859f..9a00f6854461 100644 --- a/explorer/testdata/class/fail_instantiate_abstract_class_constructor.carbon +++ b/explorer/testdata/class/fail_instantiate_abstract_class_constructor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_instantiate_abstract_class_empty.carbon b/explorer/testdata/class/fail_instantiate_abstract_class_empty.carbon index 655cbfb3ced8..de4a8b42796f 100644 --- a/explorer/testdata/class/fail_instantiate_abstract_class_empty.carbon +++ b/explorer/testdata/class/fail_instantiate_abstract_class_empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_instantiate_abstract_class_struct.carbon b/explorer/testdata/class/fail_instantiate_abstract_class_struct.carbon index 16c4e2db7ed1..b4a1d6105abf 100644 --- a/explorer/testdata/class/fail_instantiate_abstract_class_struct.carbon +++ b/explorer/testdata/class/fail_instantiate_abstract_class_struct.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_invalid_subtyping.carbon b/explorer/testdata/class/fail_invalid_subtyping.carbon index 49db5c308dee..cba412d22c88 100644 --- a/explorer/testdata/class/fail_invalid_subtyping.carbon +++ b/explorer/testdata/class/fail_invalid_subtyping.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_member_call_before_typecheck.carbon b/explorer/testdata/class/fail_member_call_before_typecheck.carbon index 0ae96cd2af23..73daebb0b265 100644 --- a/explorer/testdata/class/fail_member_call_before_typecheck.carbon +++ b/explorer/testdata/class/fail_member_call_before_typecheck.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_member_of_self.carbon b/explorer/testdata/class/fail_member_of_self.carbon index 854fc1b48e62..0b457ecc6c31 100644 --- a/explorer/testdata/class/fail_member_of_self.carbon +++ b/explorer/testdata/class/fail_member_of_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_method_deduced.carbon b/explorer/testdata/class/fail_method_deduced.carbon index 6bd5f56a56d1..2acc4a6520ef 100644 --- a/explorer/testdata/class/fail_method_deduced.carbon +++ b/explorer/testdata/class/fail_method_deduced.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_method_from_class.carbon b/explorer/testdata/class/fail_method_from_class.carbon index 50f67ed1f97b..077211af9699 100644 --- a/explorer/testdata/class/fail_method_from_class.carbon +++ b/explorer/testdata/class/fail_method_from_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_method_in_var.carbon b/explorer/testdata/class/fail_method_in_var.carbon index 0659a430d7bb..ff1120ce2ed3 100644 --- a/explorer/testdata/class/fail_method_in_var.carbon +++ b/explorer/testdata/class/fail_method_in_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_override_virtual_with_non_virtual.carbon b/explorer/testdata/class/fail_override_virtual_with_non_virtual.carbon index 7d85fd17e872..1a9df1b5daae 100644 --- a/explorer/testdata/class/fail_override_virtual_with_non_virtual.carbon +++ b/explorer/testdata/class/fail_override_virtual_with_non_virtual.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_qualified_method.carbon b/explorer/testdata/class/fail_qualified_method.carbon index b0fc424a8289..48da811bb801 100644 --- a/explorer/testdata/class/fail_qualified_method.carbon +++ b/explorer/testdata/class/fail_qualified_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_redeclare_virtual_method.carbon b/explorer/testdata/class/fail_redeclare_virtual_method.carbon index fa04c7c06dc3..2df49efbd1cb 100644 --- a/explorer/testdata/class/fail_redeclare_virtual_method.carbon +++ b/explorer/testdata/class/fail_redeclare_virtual_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_return_method.carbon b/explorer/testdata/class/fail_return_method.carbon index 98131eb84a20..1e9e145d0ff2 100644 --- a/explorer/testdata/class/fail_return_method.carbon +++ b/explorer/testdata/class/fail_return_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_store_to_uninitialized_class.carbon b/explorer/testdata/class/fail_store_to_uninitialized_class.carbon index e8fee33057c2..9b95cbe687bb 100644 --- a/explorer/testdata/class/fail_store_to_uninitialized_class.carbon +++ b/explorer/testdata/class/fail_store_to_uninitialized_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_use_before_typecheck.carbon b/explorer/testdata/class/fail_use_before_typecheck.carbon index e488093f738e..27443c14917b 100644 --- a/explorer/testdata/class/fail_use_before_typecheck.carbon +++ b/explorer/testdata/class/fail_use_before_typecheck.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_virtual_class_function.carbon b/explorer/testdata/class/fail_virtual_class_function.carbon index 3b8a2e49279c..09ea34d83240 100644 --- a/explorer/testdata/class/fail_virtual_class_function.carbon +++ b/explorer/testdata/class/fail_virtual_class_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/fail_virtual_method_absent.carbon b/explorer/testdata/class/fail_virtual_method_absent.carbon index 1342aed680aa..28c8e82cd325 100644 --- a/explorer/testdata/class/fail_virtual_method_absent.carbon +++ b/explorer/testdata/class/fail_virtual_method_absent.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/function_param.carbon b/explorer/testdata/class/function_param.carbon index 5577dcc5bcfb..68c20ce968cf 100644 --- a/explorer/testdata/class/function_param.carbon +++ b/explorer/testdata/class/function_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/global_var.carbon b/explorer/testdata/class/global_var.carbon index 579e870fc916..156d09424496 100644 --- a/explorer/testdata/class/global_var.carbon +++ b/explorer/testdata/class/global_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/method.carbon b/explorer/testdata/class/method.carbon index d833bbf8a60f..c86cfa032742 100644 --- a/explorer/testdata/class/method.carbon +++ b/explorer/testdata/class/method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/method_call_method.carbon b/explorer/testdata/class/method_call_method.carbon index e871095b675b..3fb4d17c2a59 100644 --- a/explorer/testdata/class/method_call_method.carbon +++ b/explorer/testdata/class/method_call_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/method_self.carbon b/explorer/testdata/class/method_self.carbon index f32ef4d7d4bc..9c4dffb68c4d 100644 --- a/explorer/testdata/class/method_self.carbon +++ b/explorer/testdata/class/method_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/new_and_delete.carbon b/explorer/testdata/class/new_and_delete.carbon index b9741b64b523..1c098aa82ff5 100644 --- a/explorer/testdata/class/new_and_delete.carbon +++ b/explorer/testdata/class/new_and_delete.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/new_and_delete_hierarchy.carbon b/explorer/testdata/class/new_and_delete_hierarchy.carbon index 5ac9259c873b..849fd252bc1a 100644 --- a/explorer/testdata/class/new_and_delete_hierarchy.carbon +++ b/explorer/testdata/class/new_and_delete_hierarchy.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/non_virtual_dispatch.carbon b/explorer/testdata/class/non_virtual_dispatch.carbon index 06011ae3a516..9f5314318e88 100644 --- a/explorer/testdata/class/non_virtual_dispatch.carbon +++ b/explorer/testdata/class/non_virtual_dispatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/non_virtual_dispatch_abstract.carbon b/explorer/testdata/class/non_virtual_dispatch_abstract.carbon index 7170f1ffeada..7c0b29f7097c 100644 --- a/explorer/testdata/class/non_virtual_dispatch_abstract.carbon +++ b/explorer/testdata/class/non_virtual_dispatch_abstract.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/parametrized_base_class.carbon b/explorer/testdata/class/parametrized_base_class.carbon index 02f17af483e6..e88e7cf3da9f 100644 --- a/explorer/testdata/class/parametrized_base_class.carbon +++ b/explorer/testdata/class/parametrized_base_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/pointer_conversion.carbon b/explorer/testdata/class/pointer_conversion.carbon index e8986c076943..43990d950fd3 100644 --- a/explorer/testdata/class/pointer_conversion.carbon +++ b/explorer/testdata/class/pointer_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/temp.carbon b/explorer/testdata/class/temp.carbon index 6ec72b40995a..4bbc458375d3 100644 --- a/explorer/testdata/class/temp.carbon +++ b/explorer/testdata/class/temp.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/type_of_type.carbon b/explorer/testdata/class/type_of_type.carbon index 77c7536559b9..49da736abeff 100644 --- a/explorer/testdata/class/type_of_type.carbon +++ b/explorer/testdata/class/type_of_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/var.carbon b/explorer/testdata/class/var.carbon index a6bef5b9e404..8559387a10c0 100644 --- a/explorer/testdata/class/var.carbon +++ b/explorer/testdata/class/var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/virtual_method.carbon b/explorer/testdata/class/virtual_method.carbon index be6bec5fadf3..dfe1d1fcfcc3 100644 --- a/explorer/testdata/class/virtual_method.carbon +++ b/explorer/testdata/class/virtual_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/virtual_method_self.carbon b/explorer/testdata/class/virtual_method_self.carbon index 1673b148c432..75486e6764c8 100644 --- a/explorer/testdata/class/virtual_method_self.carbon +++ b/explorer/testdata/class/virtual_method_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/class/virtual_method_shadowed_attr.carbon b/explorer/testdata/class/virtual_method_shadowed_attr.carbon index e7965089e514..eb1356f46e13 100644 --- a/explorer/testdata/class/virtual_method_shadowed_attr.carbon +++ b/explorer/testdata/class/virtual_method_shadowed_attr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/comparison/builtin_comparsion.carbon b/explorer/testdata/comparison/builtin_comparsion.carbon index 0f77c4f487ff..0f761e137d17 100644 --- a/explorer/testdata/comparison/builtin_comparsion.carbon +++ b/explorer/testdata/comparison/builtin_comparsion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/comparison/builtin_equality.carbon b/explorer/testdata/comparison/builtin_equality.carbon index 7d03b2a3c8fc..7d324f79de79 100644 --- a/explorer/testdata/comparison/builtin_equality.carbon +++ b/explorer/testdata/comparison/builtin_equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/comparison/custom_equality.carbon b/explorer/testdata/comparison/custom_equality.carbon index 9b9b5ffddaa8..cb1f4ea0adcd 100644 --- a/explorer/testdata/comparison/custom_equality.carbon +++ b/explorer/testdata/comparison/custom_equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/comparison/empty_struct.carbon b/explorer/testdata/comparison/empty_struct.carbon index 4081c3e86d0f..16c8205b4818 100644 --- a/explorer/testdata/comparison/empty_struct.carbon +++ b/explorer/testdata/comparison/empty_struct.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/comparison/fail_no_impl.carbon b/explorer/testdata/comparison/fail_no_impl.carbon index e56388f33abf..89a03316c452 100644 --- a/explorer/testdata/comparison/fail_no_impl.carbon +++ b/explorer/testdata/comparison/fail_no_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/binding_dot_self_in_constraint.carbon b/explorer/testdata/constraint/binding_dot_self_in_constraint.carbon index fb9969db875b..57511bc51d5d 100644 --- a/explorer/testdata/constraint/binding_dot_self_in_constraint.carbon +++ b/explorer/testdata/constraint/binding_dot_self_in_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/binding_self.carbon b/explorer/testdata/constraint/binding_self.carbon index fb3b83fe0489..4166a4a0a229 100644 --- a/explorer/testdata/constraint/binding_self.carbon +++ b/explorer/testdata/constraint/binding_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/combined_interfaces.carbon b/explorer/testdata/constraint/combined_interfaces.carbon index 73f47bbb9db1..1a5f4843fc91 100644 --- a/explorer/testdata/constraint/combined_interfaces.carbon +++ b/explorer/testdata/constraint/combined_interfaces.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/dot_self_is_other.carbon b/explorer/testdata/constraint/dot_self_is_other.carbon index 0ef6ec495721..bcbad6a0a77e 100644 --- a/explorer/testdata/constraint/dot_self_is_other.carbon +++ b/explorer/testdata/constraint/dot_self_is_other.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_ambiguous_member.carbon b/explorer/testdata/constraint/fail_ambiguous_member.carbon index 70bdcc7a88a0..08cf281a7ef4 100644 --- a/explorer/testdata/constraint/fail_ambiguous_member.carbon +++ b/explorer/testdata/constraint/fail_ambiguous_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_combine_equality.carbon b/explorer/testdata/constraint/fail_combine_equality.carbon index b4ac5bc4c3c2..65c94886fd38 100644 --- a/explorer/testdata/constraint/fail_combine_equality.carbon +++ b/explorer/testdata/constraint/fail_combine_equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_dot_self_after_scope.carbon b/explorer/testdata/constraint/fail_dot_self_after_scope.carbon index 5973806e0cf6..75648f40f5fe 100644 --- a/explorer/testdata/constraint/fail_dot_self_after_scope.carbon +++ b/explorer/testdata/constraint/fail_dot_self_after_scope.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_dot_self_after_scope_2.carbon b/explorer/testdata/constraint/fail_dot_self_after_scope_2.carbon index c895f48699a5..b76f0dbc2df1 100644 --- a/explorer/testdata/constraint/fail_dot_self_after_scope_2.carbon +++ b/explorer/testdata/constraint/fail_dot_self_after_scope_2.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_dot_self_not_in_scope.carbon b/explorer/testdata/constraint/fail_dot_self_not_in_scope.carbon index 02034f2e10a4..2dcacb3f526e 100644 --- a/explorer/testdata/constraint/fail_dot_self_not_in_scope.carbon +++ b/explorer/testdata/constraint/fail_dot_self_not_in_scope.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_infinite_self.carbon b/explorer/testdata/constraint/fail_infinite_self.carbon index 2810acc0548d..df0ed25231e9 100644 --- a/explorer/testdata/constraint/fail_infinite_self.carbon +++ b/explorer/testdata/constraint/fail_infinite_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_infinite_self_ptr.carbon b/explorer/testdata/constraint/fail_infinite_self_ptr.carbon index 00c5824c7889..ef469efce120 100644 --- a/explorer/testdata/constraint/fail_infinite_self_ptr.carbon +++ b/explorer/testdata/constraint/fail_infinite_self_ptr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_missing_member.carbon b/explorer/testdata/constraint/fail_missing_member.carbon index bf74d831a303..181d558badb7 100644 --- a/explorer/testdata/constraint/fail_missing_member.carbon +++ b/explorer/testdata/constraint/fail_missing_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_non_type_self.carbon b/explorer/testdata/constraint/fail_non_type_self.carbon index 5caa8505f93d..b44a67de5605 100644 --- a/explorer/testdata/constraint/fail_non_type_self.carbon +++ b/explorer/testdata/constraint/fail_non_type_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_where_equals_different_types.carbon b/explorer/testdata/constraint/fail_where_equals_different_types.carbon index e6693d6abffc..7a7904510e7f 100644 --- a/explorer/testdata/constraint/fail_where_equals_different_types.carbon +++ b/explorer/testdata/constraint/fail_where_equals_different_types.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_where_impls_non_constraint.carbon b/explorer/testdata/constraint/fail_where_impls_non_constraint.carbon index 287a82dcf6c6..d7bf865799d1 100644 --- a/explorer/testdata/constraint/fail_where_impls_non_constraint.carbon +++ b/explorer/testdata/constraint/fail_where_impls_non_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_where_impls_non_type.carbon b/explorer/testdata/constraint/fail_where_impls_non_type.carbon index e65e8d138eeb..72a83506df49 100644 --- a/explorer/testdata/constraint/fail_where_impls_non_type.carbon +++ b/explorer/testdata/constraint/fail_where_impls_non_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/fail_where_non_type_impls.carbon b/explorer/testdata/constraint/fail_where_non_type_impls.carbon index 95259c36d26b..adf7535f267b 100644 --- a/explorer/testdata/constraint/fail_where_non_type_impls.carbon +++ b/explorer/testdata/constraint/fail_where_non_type_impls.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/nondependent_where.carbon b/explorer/testdata/constraint/nondependent_where.carbon index fade0d11c540..9b8cd238a611 100644 --- a/explorer/testdata/constraint/nondependent_where.carbon +++ b/explorer/testdata/constraint/nondependent_where.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/qualified_lookup_in_where.carbon b/explorer/testdata/constraint/qualified_lookup_in_where.carbon index 058b7ea1c96e..e77771a0c586 100644 --- a/explorer/testdata/constraint/qualified_lookup_in_where.carbon +++ b/explorer/testdata/constraint/qualified_lookup_in_where.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/rewrite.carbon b/explorer/testdata/constraint/rewrite.carbon index 7c5046364dda..41cc50f29a27 100644 --- a/explorer/testdata/constraint/rewrite.carbon +++ b/explorer/testdata/constraint/rewrite.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/rewrite_compound.carbon b/explorer/testdata/constraint/rewrite_compound.carbon index e540cfcf15b0..d5803737a68f 100644 --- a/explorer/testdata/constraint/rewrite_compound.carbon +++ b/explorer/testdata/constraint/rewrite_compound.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/rewrite_compound_2.carbon b/explorer/testdata/constraint/rewrite_compound_2.carbon index fd2baf220fc0..b138d0fef8e6 100644 --- a/explorer/testdata/constraint/rewrite_compound_2.carbon +++ b/explorer/testdata/constraint/rewrite_compound_2.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/rewrite_in_qualifier.carbon b/explorer/testdata/constraint/rewrite_in_qualifier.carbon index 6a38f196e205..4c470569b233 100644 --- a/explorer/testdata/constraint/rewrite_in_qualifier.carbon +++ b/explorer/testdata/constraint/rewrite_in_qualifier.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/rewrite_in_qualifier_and_type.carbon b/explorer/testdata/constraint/rewrite_in_qualifier_and_type.carbon index 72f05e8c0787..7620b58eb67d 100644 --- a/explorer/testdata/constraint/rewrite_in_qualifier_and_type.carbon +++ b/explorer/testdata/constraint/rewrite_in_qualifier_and_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/type_of_type.carbon b/explorer/testdata/constraint/type_of_type.carbon index e24e976fcf2f..f984110dbb56 100644 --- a/explorer/testdata/constraint/type_of_type.carbon +++ b/explorer/testdata/constraint/type_of_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/where_impls.carbon b/explorer/testdata/constraint/where_impls.carbon index f5535db502f0..2aaa4eb88401 100644 --- a/explorer/testdata/constraint/where_impls.carbon +++ b/explorer/testdata/constraint/where_impls.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/where_multiple_equality.carbon b/explorer/testdata/constraint/where_multiple_equality.carbon index 41554d51d3a0..6170a6e4783e 100644 --- a/explorer/testdata/constraint/where_multiple_equality.carbon +++ b/explorer/testdata/constraint/where_multiple_equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/constraint/where_self.carbon b/explorer/testdata/constraint/where_self.carbon index 94ba52f1538e..b55e2247c599 100644 --- a/explorer/testdata/constraint/where_self.carbon +++ b/explorer/testdata/constraint/where_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/call_destructor_from_destructor.carbon b/explorer/testdata/destructor/call_destructor_from_destructor.carbon index 1472218dda56..3ef5197536ea 100644 --- a/explorer/testdata/destructor/call_destructor_from_destructor.carbon +++ b/explorer/testdata/destructor/call_destructor_from_destructor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/destroy_array.carbon b/explorer/testdata/destructor/destroy_array.carbon index 46b4fd479983..43434940a959 100644 --- a/explorer/testdata/destructor/destroy_array.carbon +++ b/explorer/testdata/destructor/destroy_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/destroy_base_class.carbon b/explorer/testdata/destructor/destroy_base_class.carbon index 62b1698b2384..e84f42f77e5f 100644 --- a/explorer/testdata/destructor/destroy_base_class.carbon +++ b/explorer/testdata/destructor/destroy_base_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/destroy_base_class_and_members.carbon b/explorer/testdata/destructor/destroy_base_class_and_members.carbon index 500af6e4e27e..893bc864014d 100644 --- a/explorer/testdata/destructor/destroy_base_class_and_members.carbon +++ b/explorer/testdata/destructor/destroy_base_class_and_members.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/destroy_different_types.carbon b/explorer/testdata/destructor/destroy_different_types.carbon index c2087eb047dc..8cddc105de13 100644 --- a/explorer/testdata/destructor/destroy_different_types.carbon +++ b/explorer/testdata/destructor/destroy_different_types.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/destroy_inner_destructor.carbon b/explorer/testdata/destructor/destroy_inner_destructor.carbon index be4621d8f384..70a56a579fc6 100644 --- a/explorer/testdata/destructor/destroy_inner_destructor.carbon +++ b/explorer/testdata/destructor/destroy_inner_destructor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/destructor_with_return.carbon b/explorer/testdata/destructor/destructor_with_return.carbon index a911d7ed3ff8..a42c456eef64 100644 --- a/explorer/testdata/destructor/destructor_with_return.carbon +++ b/explorer/testdata/destructor/destructor_with_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/dont_call_in_method.carbon b/explorer/testdata/destructor/dont_call_in_method.carbon index d3139c154150..c7341ea850ec 100644 --- a/explorer/testdata/destructor/dont_call_in_method.carbon +++ b/explorer/testdata/destructor/dont_call_in_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/fail_delete_base_without_virtual_destructor.carbon b/explorer/testdata/destructor/fail_delete_base_without_virtual_destructor.carbon index 2b54b41f924d..ecf372c598cc 100644 --- a/explorer/testdata/destructor/fail_delete_base_without_virtual_destructor.carbon +++ b/explorer/testdata/destructor/fail_delete_base_without_virtual_destructor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Deallocating a derived class from base class pointer requires a virtual destructor package ExplorerTest api; diff --git a/explorer/testdata/destructor/fail_multiple_destructor_declaration.carbon b/explorer/testdata/destructor/fail_multiple_destructor_declaration.carbon index 9e4e9280ac35..ec5f5fd8e8b0 100644 --- a/explorer/testdata/destructor/fail_multiple_destructor_declaration.carbon +++ b/explorer/testdata/destructor/fail_multiple_destructor_declaration.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/fail_override_abstract.carbon b/explorer/testdata/destructor/fail_override_abstract.carbon index 45b06036e7ae..b31dd8ca97ff 100644 --- a/explorer/testdata/destructor/fail_override_abstract.carbon +++ b/explorer/testdata/destructor/fail_override_abstract.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/fail_override_impl_none.carbon b/explorer/testdata/destructor/fail_override_impl_none.carbon index 93f8284c37ce..73dfa62a2eb3 100644 --- a/explorer/testdata/destructor/fail_override_impl_none.carbon +++ b/explorer/testdata/destructor/fail_override_impl_none.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/fail_override_virtual_virtual.carbon b/explorer/testdata/destructor/fail_override_virtual_virtual.carbon index 6aebab29b58e..5ca6f54ff034 100644 --- a/explorer/testdata/destructor/fail_override_virtual_virtual.carbon +++ b/explorer/testdata/destructor/fail_override_virtual_virtual.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/function_with_return.carbon b/explorer/testdata/destructor/function_with_return.carbon index 3c4dc51dc3ba..3c496c2ab0ca 100644 --- a/explorer/testdata/destructor/function_with_return.carbon +++ b/explorer/testdata/destructor/function_with_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/loop_block.carbon b/explorer/testdata/destructor/loop_block.carbon index c4b9cafacc90..c43fa09fe675 100644 --- a/explorer/testdata/destructor/loop_block.carbon +++ b/explorer/testdata/destructor/loop_block.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/loop_break_continue.carbon b/explorer/testdata/destructor/loop_break_continue.carbon index 293a00f84308..a55416ecdba5 100644 --- a/explorer/testdata/destructor/loop_break_continue.carbon +++ b/explorer/testdata/destructor/loop_break_continue.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/nested_block_with_return.carbon b/explorer/testdata/destructor/nested_block_with_return.carbon index 61108a238367..114f26b516b3 100644 --- a/explorer/testdata/destructor/nested_block_with_return.carbon +++ b/explorer/testdata/destructor/nested_block_with_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/self_addr.carbon b/explorer/testdata/destructor/self_addr.carbon index 1385e3021636..d64b6bb6249f 100644 --- a/explorer/testdata/destructor/self_addr.carbon +++ b/explorer/testdata/destructor/self_addr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/destructor/virtual_destructor.carbon b/explorer/testdata/destructor/virtual_destructor.carbon index 56e5d035d3af..aafd3af6f51b 100644 --- a/explorer/testdata/destructor/virtual_destructor.carbon +++ b/explorer/testdata/destructor/virtual_destructor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/destructor/virtual_destructor_nested.carbon b/explorer/testdata/destructor/virtual_destructor_nested.carbon index 636d74c06b76..835631969088 100644 --- a/explorer/testdata/destructor/virtual_destructor_nested.carbon +++ b/explorer/testdata/destructor/virtual_destructor_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/fail_convert.carbon b/explorer/testdata/for/fail_convert.carbon index e4f948ffe104..0c379c4b7064 100644 --- a/explorer/testdata/for/fail_convert.carbon +++ b/explorer/testdata/for/fail_convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/for_loop.carbon b/explorer/testdata/for/for_loop.carbon index 172c159ab5f0..f9e7e8096f02 100644 --- a/explorer/testdata/for/for_loop.carbon +++ b/explorer/testdata/for/for_loop.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/for_loop_auto.carbon b/explorer/testdata/for/for_loop_auto.carbon index e116e30d070b..08a96db1efd7 100644 --- a/explorer/testdata/for/for_loop_auto.carbon +++ b/explorer/testdata/for/for_loop_auto.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/for_loop_break.carbon b/explorer/testdata/for/for_loop_break.carbon index 9f8ce0ddface..941f09b574fc 100644 --- a/explorer/testdata/for/for_loop_break.carbon +++ b/explorer/testdata/for/for_loop_break.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/for_loop_continue.carbon b/explorer/testdata/for/for_loop_continue.carbon index 6c3683589849..44a0d70a0867 100644 --- a/explorer/testdata/for/for_loop_continue.carbon +++ b/explorer/testdata/for/for_loop_continue.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/for_loop_empty.carbon b/explorer/testdata/for/for_loop_empty.carbon index 5f766264e11f..f1bf12c3a64c 100644 --- a/explorer/testdata/for/for_loop_empty.carbon +++ b/explorer/testdata/for/for_loop_empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/for/for_loop_nested.carbon b/explorer/testdata/for/for_loop_nested.carbon index a541afe4cdf7..56fe87455c17 100644 --- a/explorer/testdata/for/for_loop_nested.carbon +++ b/explorer/testdata/for/for_loop_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/add.carbon b/explorer/testdata/function/auto_return/add.carbon index c95674f9693d..b048e60a911d 100644 --- a/explorer/testdata/function/auto_return/add.carbon +++ b/explorer/testdata/function/auto_return/add.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/fail_direct_recurse.carbon b/explorer/testdata/function/auto_return/fail_direct_recurse.carbon index 7a0dafc9adc3..68cf53cb125f 100644 --- a/explorer/testdata/function/auto_return/fail_direct_recurse.carbon +++ b/explorer/testdata/function/auto_return/fail_direct_recurse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/fail_multiple_returns.carbon b/explorer/testdata/function/auto_return/fail_multiple_returns.carbon index f9ad12bb276d..07a551b61a72 100644 --- a/explorer/testdata/function/auto_return/fail_multiple_returns.carbon +++ b/explorer/testdata/function/auto_return/fail_multiple_returns.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/fail_no_return.carbon b/explorer/testdata/function/auto_return/fail_no_return.carbon index ac3f2ac4374d..1cf285c4a1a9 100644 --- a/explorer/testdata/function/auto_return/fail_no_return.carbon +++ b/explorer/testdata/function/auto_return/fail_no_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/fail_separate_decl.carbon b/explorer/testdata/function/auto_return/fail_separate_decl.carbon index 372703f44228..35576ef666c7 100644 --- a/explorer/testdata/function/auto_return/fail_separate_decl.carbon +++ b/explorer/testdata/function/auto_return/fail_separate_decl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/modify_arg_type.carbon b/explorer/testdata/function/auto_return/modify_arg_type.carbon index 96ec51c953bf..3158469442a0 100644 --- a/explorer/testdata/function/auto_return/modify_arg_type.carbon +++ b/explorer/testdata/function/auto_return/modify_arg_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/modify_return_type.carbon b/explorer/testdata/function/auto_return/modify_return_type.carbon index 3ed92913ee8a..9cff350a158a 100644 --- a/explorer/testdata/function/auto_return/modify_return_type.carbon +++ b/explorer/testdata/function/auto_return/modify_return_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/auto_return/type.carbon b/explorer/testdata/function/auto_return/type.carbon index 1a7efb59ac7a..90857c521e2c 100644 --- a/explorer/testdata/function/auto_return/type.carbon +++ b/explorer/testdata/function/auto_return/type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/convert_args.carbon b/explorer/testdata/function/convert_args.carbon index a4e97f3a5ddb..d471eb287b9a 100644 --- a/explorer/testdata/function/convert_args.carbon +++ b/explorer/testdata/function/convert_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/empty_params.carbon b/explorer/testdata/function/empty_params.carbon index 6490ec15df8a..725632171ef2 100644 --- a/explorer/testdata/function/empty_params.carbon +++ b/explorer/testdata/function/empty_params.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_call_undefined.carbon b/explorer/testdata/function/fail_call_undefined.carbon index 81bedf94abd1..a1f0c8ea732c 100644 --- a/explorer/testdata/function/fail_call_undefined.carbon +++ b/explorer/testdata/function/fail_call_undefined.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_call_undefined_main.carbon b/explorer/testdata/function/fail_call_undefined_main.carbon index 7677c9ee5aa4..152b723a4d3d 100644 --- a/explorer/testdata/function/fail_call_undefined_main.carbon +++ b/explorer/testdata/function/fail_call_undefined_main.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: :0: attempt to call function `Main` that has not been defined package ExplorerTest api; diff --git a/explorer/testdata/function/fail_call_with_tuple.carbon b/explorer/testdata/function/fail_call_with_tuple.carbon index dbeaac11b776..6ae033b31343 100644 --- a/explorer/testdata/function/fail_call_with_tuple.carbon +++ b/explorer/testdata/function/fail_call_with_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_invalid_fnty.carbon b/explorer/testdata/function/fail_invalid_fnty.carbon index 51d73f38b8d7..83e24b6ae321 100644 --- a/explorer/testdata/function/fail_invalid_fnty.carbon +++ b/explorer/testdata/function/fail_invalid_fnty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_main_with_parameters.carbon b/explorer/testdata/function/fail_main_with_parameters.carbon index 633fd797fb98..61a9bb91d097 100644 --- a/explorer/testdata/function/fail_main_with_parameters.carbon +++ b/explorer/testdata/function/fail_main_with_parameters.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_match_no_return.carbon b/explorer/testdata/function/fail_match_no_return.carbon index 33a95ac18399..241f57a5ddf2 100644 --- a/explorer/testdata/function/fail_match_no_return.carbon +++ b/explorer/testdata/function/fail_match_no_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_match_partial_return.carbon b/explorer/testdata/function/fail_match_partial_return.carbon index c18f950122e3..eea23860d05b 100644 --- a/explorer/testdata/function/fail_match_partial_return.carbon +++ b/explorer/testdata/function/fail_match_partial_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_non_exhaustive_match.carbon b/explorer/testdata/function/fail_non_exhaustive_match.carbon index 604b2079e60f..61cefa3fc52e 100644 --- a/explorer/testdata/function/fail_non_exhaustive_match.carbon +++ b/explorer/testdata/function/fail_non_exhaustive_match.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_parameter_type.carbon b/explorer/testdata/function/fail_parameter_type.carbon index 537a3be6f75c..9e1b3bfc1b65 100644 --- a/explorer/testdata/function/fail_parameter_type.carbon +++ b/explorer/testdata/function/fail_parameter_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_parameter_type_only.carbon b/explorer/testdata/function/fail_parameter_type_only.carbon index ce4386ad96ad..a60e38a97a2e 100644 --- a/explorer/testdata/function/fail_parameter_type_only.carbon +++ b/explorer/testdata/function/fail_parameter_type_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_recurse_before_typecheck.carbon b/explorer/testdata/function/fail_recurse_before_typecheck.carbon index d8adc45b3640..dee7dbc95936 100644 --- a/explorer/testdata/function/fail_recurse_before_typecheck.carbon +++ b/explorer/testdata/function/fail_recurse_before_typecheck.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_recurse_in_return_type.carbon b/explorer/testdata/function/fail_recurse_in_return_type.carbon index 01e7c8454df9..0ccad7df91f4 100644 --- a/explorer/testdata/function/fail_recurse_in_return_type.carbon +++ b/explorer/testdata/function/fail_recurse_in_return_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/fail_return_call_has_invalid_body.carbon b/explorer/testdata/function/fail_return_call_has_invalid_body.carbon index 353d3fb1afde..f2e8f5ec3200 100644 --- a/explorer/testdata/function/fail_return_call_has_invalid_body.carbon +++ b/explorer/testdata/function/fail_return_call_has_invalid_body.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package EmptyIdentifier impl; diff --git a/explorer/testdata/function/fail_var_type_is_call.carbon b/explorer/testdata/function/fail_var_type_is_call.carbon index 42d63327824e..37fcd4a0d124 100644 --- a/explorer/testdata/function/fail_var_type_is_call.carbon +++ b/explorer/testdata/function/fail_var_type_is_call.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package EmptyIdentifier impl; diff --git a/explorer/testdata/function/fnty.carbon b/explorer/testdata/function/fnty.carbon index bb0e2186cd64..27e474cdc446 100644 --- a/explorer/testdata/function/fnty.carbon +++ b/explorer/testdata/function/fnty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/ignored_parameter.carbon b/explorer/testdata/function/ignored_parameter.carbon index 20bc42264be1..44166bfbcf7c 100644 --- a/explorer/testdata/function/ignored_parameter.carbon +++ b/explorer/testdata/function/ignored_parameter.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/multiple_args.carbon b/explorer/testdata/function/multiple_args.carbon index 2f9af3689563..0b5bf51778df 100644 --- a/explorer/testdata/function/multiple_args.carbon +++ b/explorer/testdata/function/multiple_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/non_exhaustive_match_no_return_type.carbon b/explorer/testdata/function/non_exhaustive_match_no_return_type.carbon index 712ea8047968..2f3636f10c8d 100644 --- a/explorer/testdata/function/non_exhaustive_match_no_return_type.carbon +++ b/explorer/testdata/function/non_exhaustive_match_no_return_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/non_exhaustive_match_return.carbon b/explorer/testdata/function/non_exhaustive_match_return.carbon index 9b65156244e4..5fdacbcf9b23 100644 --- a/explorer/testdata/function/non_exhaustive_match_return.carbon +++ b/explorer/testdata/function/non_exhaustive_match_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/param_lifetime.carbon b/explorer/testdata/function/param_lifetime.carbon index fa28317b4bff..927a8d8127ba 100644 --- a/explorer/testdata/function/param_lifetime.carbon +++ b/explorer/testdata/function/param_lifetime.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/recursive.carbon b/explorer/testdata/function/recursive.carbon index 74e5c2d000ad..cdfeb5875420 100644 --- a/explorer/testdata/function/recursive.carbon +++ b/explorer/testdata/function/recursive.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/return.carbon b/explorer/testdata/function/return.carbon index a864c8842546..d00ab69df2e0 100644 --- a/explorer/testdata/function/return.carbon +++ b/explorer/testdata/function/return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/return_convertible_to_type.carbon b/explorer/testdata/function/return_convertible_to_type.carbon index 00a9e05f59a8..2de4e4da6fc2 100644 --- a/explorer/testdata/function/return_convertible_to_type.carbon +++ b/explorer/testdata/function/return_convertible_to_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/return_exhaustive_match.carbon b/explorer/testdata/function/return_exhaustive_match.carbon index 97f2f4abb650..0ce476ce2dae 100644 --- a/explorer/testdata/function/return_exhaustive_match.carbon +++ b/explorer/testdata/function/return_exhaustive_match.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/function/type_match.carbon b/explorer/testdata/function/type_match.carbon index e0136fb0a92f..4d6e55a97783 100644 --- a/explorer/testdata/function/type_match.carbon +++ b/explorer/testdata/function/type_match.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/class_function.carbon b/explorer/testdata/generic_class/class_function.carbon index 81b61cf5f8d2..3fbebe4a2617 100644 --- a/explorer/testdata/generic_class/class_function.carbon +++ b/explorer/testdata/generic_class/class_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/convert_from_struct.carbon b/explorer/testdata/generic_class/convert_from_struct.carbon index 1385cf737da8..033a6e78b7e9 100644 --- a/explorer/testdata/generic_class/convert_from_struct.carbon +++ b/explorer/testdata/generic_class/convert_from_struct.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_args_mismatch.carbon b/explorer/testdata/generic_class/fail_args_mismatch.carbon index a31042514a07..571a2502e299 100644 --- a/explorer/testdata/generic_class/fail_args_mismatch.carbon +++ b/explorer/testdata/generic_class/fail_args_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_argument_deduction.carbon b/explorer/testdata/generic_class/fail_argument_deduction.carbon index 37f69567950e..330c60a6d6fc 100644 --- a/explorer/testdata/generic_class/fail_argument_deduction.carbon +++ b/explorer/testdata/generic_class/fail_argument_deduction.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_bad_parameter_type.carbon b/explorer/testdata/generic_class/fail_bad_parameter_type.carbon index 2b31eeac6b3f..5874b7d09069 100644 --- a/explorer/testdata/generic_class/fail_bad_parameter_type.carbon +++ b/explorer/testdata/generic_class/fail_bad_parameter_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_field_access_on_generic.carbon b/explorer/testdata/generic_class/fail_field_access_on_generic.carbon index 13c4f8b56ad1..a91f387cca59 100644 --- a/explorer/testdata/generic_class/fail_field_access_on_generic.carbon +++ b/explorer/testdata/generic_class/fail_field_access_on_generic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_generic_class_arg.carbon b/explorer/testdata/generic_class/fail_generic_class_arg.carbon index f34df1d7e132..5c4fbd03cb20 100644 --- a/explorer/testdata/generic_class/fail_generic_class_arg.carbon +++ b/explorer/testdata/generic_class/fail_generic_class_arg.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_generic_in_pattern.carbon b/explorer/testdata/generic_class/fail_generic_in_pattern.carbon index 9cd776e9234a..c3ef7ac89ffa 100644 --- a/explorer/testdata/generic_class/fail_generic_in_pattern.carbon +++ b/explorer/testdata/generic_class/fail_generic_in_pattern.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_instantiate_non_generic.carbon b/explorer/testdata/generic_class/fail_instantiate_non_generic.carbon index 022805bab42c..de8376f60985 100644 --- a/explorer/testdata/generic_class/fail_instantiate_non_generic.carbon +++ b/explorer/testdata/generic_class/fail_instantiate_non_generic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_no_args.carbon b/explorer/testdata/generic_class/fail_no_args.carbon index 11bcd680c330..e97b2cbff883 100644 --- a/explorer/testdata/generic_class/fail_no_args.carbon +++ b/explorer/testdata/generic_class/fail_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_point_equal.carbon b/explorer/testdata/generic_class/fail_point_equal.carbon index 181d401a183c..a27280efc21f 100644 --- a/explorer/testdata/generic_class/fail_point_equal.carbon +++ b/explorer/testdata/generic_class/fail_point_equal.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_return_type_is_type.carbon b/explorer/testdata/generic_class/fail_return_type_is_type.carbon index b42172978a4e..f63948cde1be 100644 --- a/explorer/testdata/generic_class/fail_return_type_is_type.carbon +++ b/explorer/testdata/generic_class/fail_return_type_is_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_self_with_arg.carbon b/explorer/testdata/generic_class/fail_self_with_arg.carbon index a8e73e6a880a..90b117c316a7 100644 --- a/explorer/testdata/generic_class/fail_self_with_arg.carbon +++ b/explorer/testdata/generic_class/fail_self_with_arg.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_two_arg_lists.carbon b/explorer/testdata/generic_class/fail_two_arg_lists.carbon index b51c326a7da6..f9d77503ce49 100644 --- a/explorer/testdata/generic_class/fail_two_arg_lists.carbon +++ b/explorer/testdata/generic_class/fail_two_arg_lists.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/fail_value_param_mismatch.carbon b/explorer/testdata/generic_class/fail_value_param_mismatch.carbon index 2bbd923eba21..bffabb6adeee 100644 --- a/explorer/testdata/generic_class/fail_value_param_mismatch.carbon +++ b/explorer/testdata/generic_class/fail_value_param_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/generic_class_substitution.carbon b/explorer/testdata/generic_class/generic_class_substitution.carbon index be12e1fd4224..40b72aaecdc7 100644 --- a/explorer/testdata/generic_class/generic_class_substitution.carbon +++ b/explorer/testdata/generic_class/generic_class_substitution.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/generic_fun_and_class.carbon b/explorer/testdata/generic_class/generic_fun_and_class.carbon index f78c5b593389..3fdea6416991 100644 --- a/explorer/testdata/generic_class/generic_fun_and_class.carbon +++ b/explorer/testdata/generic_class/generic_fun_and_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/generic_point.carbon b/explorer/testdata/generic_class/generic_point.carbon index b107722e4c0c..3a39401aa3a8 100644 --- a/explorer/testdata/generic_class/generic_point.carbon +++ b/explorer/testdata/generic_class/generic_point.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/impl_with_argument.carbon b/explorer/testdata/generic_class/impl_with_argument.carbon index b41b8ed309d2..d25c952bfb22 100644 --- a/explorer/testdata/generic_class/impl_with_argument.carbon +++ b/explorer/testdata/generic_class/impl_with_argument.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/impl_with_self.carbon b/explorer/testdata/generic_class/impl_with_self.carbon index f05264264948..8976085389e9 100644 --- a/explorer/testdata/generic_class/impl_with_self.carbon +++ b/explorer/testdata/generic_class/impl_with_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/instantiation_at_compile_time.carbon b/explorer/testdata/generic_class/instantiation_at_compile_time.carbon index 8a57538c525b..ceed15abb44e 100644 --- a/explorer/testdata/generic_class/instantiation_at_compile_time.carbon +++ b/explorer/testdata/generic_class/instantiation_at_compile_time.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/param_with_dependent_type.carbon b/explorer/testdata/generic_class/param_with_dependent_type.carbon index 4df468b19760..2a89254f3bc4 100644 --- a/explorer/testdata/generic_class/param_with_dependent_type.carbon +++ b/explorer/testdata/generic_class/param_with_dependent_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/parameter_type_conversion.carbon b/explorer/testdata/generic_class/parameter_type_conversion.carbon index 0c1a49e2b0cd..f3ecedad999b 100644 --- a/explorer/testdata/generic_class/parameter_type_conversion.carbon +++ b/explorer/testdata/generic_class/parameter_type_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/point_with_interface.carbon b/explorer/testdata/generic_class/point_with_interface.carbon index 6f28befaf197..8a743c5b89fd 100644 --- a/explorer/testdata/generic_class/point_with_interface.carbon +++ b/explorer/testdata/generic_class/point_with_interface.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/use_at_compile_time.carbon b/explorer/testdata/generic_class/use_at_compile_time.carbon index 2b1b091d100c..c2fc9148bb09 100644 --- a/explorer/testdata/generic_class/use_at_compile_time.carbon +++ b/explorer/testdata/generic_class/use_at_compile_time.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_class/use_self.carbon b/explorer/testdata/generic_class/use_self.carbon index c5e83409fd29..6546e52cb05a 100644 --- a/explorer/testdata/generic_class/use_self.carbon +++ b/explorer/testdata/generic_class/use_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/apply.carbon b/explorer/testdata/generic_function/apply.carbon index af34b6ca748d..5accd1dad24e 100644 --- a/explorer/testdata/generic_function/apply.carbon +++ b/explorer/testdata/generic_function/apply.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/call_at_compile_time.carbon b/explorer/testdata/generic_function/call_at_compile_time.carbon index 740c535764cb..437ef31d6a38 100644 --- a/explorer/testdata/generic_function/call_at_compile_time.carbon +++ b/explorer/testdata/generic_function/call_at_compile_time.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_implicit_conversion_extra_field.carbon b/explorer/testdata/generic_function/fail_implicit_conversion_extra_field.carbon index b5c4b067aab5..2630b0824ba8 100644 --- a/explorer/testdata/generic_function/fail_implicit_conversion_extra_field.carbon +++ b/explorer/testdata/generic_function/fail_implicit_conversion_extra_field.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_implicit_conversion_missing_field.carbon b/explorer/testdata/generic_function/fail_implicit_conversion_missing_field.carbon index 8d49d48979e3..92fe0fac40e9 100644 --- a/explorer/testdata/generic_function/fail_implicit_conversion_missing_field.carbon +++ b/explorer/testdata/generic_function/fail_implicit_conversion_missing_field.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_missing_exclam.carbon b/explorer/testdata/generic_function/fail_missing_exclam.carbon index 7a1cef81f041..4183b2ab320d 100644 --- a/explorer/testdata/generic_function/fail_missing_exclam.carbon +++ b/explorer/testdata/generic_function/fail_missing_exclam.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_not_addable.carbon b/explorer/testdata/generic_function/fail_not_addable.carbon index af981669ec17..f13b8e870d4e 100644 --- a/explorer/testdata/generic_function/fail_not_addable.carbon +++ b/explorer/testdata/generic_function/fail_not_addable.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_not_type.carbon b/explorer/testdata/generic_function/fail_not_type.carbon index 173cafc5fb5d..fb6dfd8a22a2 100644 --- a/explorer/testdata/generic_function/fail_not_type.carbon +++ b/explorer/testdata/generic_function/fail_not_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_type_deduction_mismatch.carbon b/explorer/testdata/generic_function/fail_type_deduction_mismatch.carbon index 98c607accf9a..512cb1479ee2 100644 --- a/explorer/testdata/generic_function/fail_type_deduction_mismatch.carbon +++ b/explorer/testdata/generic_function/fail_type_deduction_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_type_deduction_unused.carbon b/explorer/testdata/generic_function/fail_type_deduction_unused.carbon index abed628d3e54..f769b96e641b 100644 --- a/explorer/testdata/generic_function/fail_type_deduction_unused.carbon +++ b/explorer/testdata/generic_function/fail_type_deduction_unused.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_type_only.carbon b/explorer/testdata/generic_function/fail_type_only.carbon index 472a8f4d1152..04ddf697beec 100644 --- a/explorer/testdata/generic_function/fail_type_only.carbon +++ b/explorer/testdata/generic_function/fail_type_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/fail_wrong_variable_substituation.carbon b/explorer/testdata/generic_function/fail_wrong_variable_substituation.carbon index 9b91e57c0fba..5170fe5910c9 100644 --- a/explorer/testdata/generic_function/fail_wrong_variable_substituation.carbon +++ b/explorer/testdata/generic_function/fail_wrong_variable_substituation.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; diff --git a/explorer/testdata/generic_function/generic_method.carbon b/explorer/testdata/generic_function/generic_method.carbon index 178c8d9885d4..af70386d660a 100644 --- a/explorer/testdata/generic_function/generic_method.carbon +++ b/explorer/testdata/generic_function/generic_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/implicit_conversion.carbon b/explorer/testdata/generic_function/implicit_conversion.carbon index 2b6aa8f44fad..a1bc8f350928 100644 --- a/explorer/testdata/generic_function/implicit_conversion.carbon +++ b/explorer/testdata/generic_function/implicit_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/instantiate_deduced.carbon b/explorer/testdata/generic_function/instantiate_deduced.carbon index 26abd0260333..e20358ba4fb7 100644 --- a/explorer/testdata/generic_function/instantiate_deduced.carbon +++ b/explorer/testdata/generic_function/instantiate_deduced.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/non_generic_param.carbon b/explorer/testdata/generic_function/non_generic_param.carbon index e553e8e0fbc1..a405391f257f 100644 --- a/explorer/testdata/generic_function/non_generic_param.carbon +++ b/explorer/testdata/generic_function/non_generic_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/nondeduced_generic_param.carbon b/explorer/testdata/generic_function/nondeduced_generic_param.carbon index d15fb878d800..30b6e34713f7 100644 --- a/explorer/testdata/generic_function/nondeduced_generic_param.carbon +++ b/explorer/testdata/generic_function/nondeduced_generic_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; class A(T:! type) { diff --git a/explorer/testdata/generic_function/return_val.carbon b/explorer/testdata/generic_function/return_val.carbon index 856f7dc502d7..f848be71a00c 100644 --- a/explorer/testdata/generic_function/return_val.carbon +++ b/explorer/testdata/generic_function/return_val.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/swap.carbon b/explorer/testdata/generic_function/swap.carbon index 983900eef644..bad3dab09224 100644 --- a/explorer/testdata/generic_function/swap.carbon +++ b/explorer/testdata/generic_function/swap.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/tuple_map.carbon b/explorer/testdata/generic_function/tuple_map.carbon index 9534d45f49b4..a142aaa9af7a 100644 --- a/explorer/testdata/generic_function/tuple_map.carbon +++ b/explorer/testdata/generic_function/tuple_map.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/generic_function/type_matching.carbon b/explorer/testdata/generic_function/type_matching.carbon index ddd37bd68118..2cd600069922 100644 --- a/explorer/testdata/generic_function/type_matching.carbon +++ b/explorer/testdata/generic_function/type_matching.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/convert_condition.carbon b/explorer/testdata/if_else/convert_condition.carbon index e503bcfda29a..56e6da323018 100644 --- a/explorer/testdata/if_else/convert_condition.carbon +++ b/explorer/testdata/if_else/convert_condition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/if_else.carbon b/explorer/testdata/if_else/if_else.carbon index 4b4e8a284dac..6cd18675aef9 100644 --- a/explorer/testdata/if_else/if_else.carbon +++ b/explorer/testdata/if_else/if_else.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/if_else_if.carbon b/explorer/testdata/if_else/if_else_if.carbon index 6514d714aec6..6047d70a5865 100644 --- a/explorer/testdata/if_else/if_else_if.carbon +++ b/explorer/testdata/if_else/if_else_if.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/if_else_if_else.carbon b/explorer/testdata/if_else/if_else_if_else.carbon index 8ce535189675..92a1ef57144b 100644 --- a/explorer/testdata/if_else/if_else_if_else.carbon +++ b/explorer/testdata/if_else/if_else_if_else.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/if_false.carbon b/explorer/testdata/if_else/if_false.carbon index 18b1bc66c844..693685bce43c 100644 --- a/explorer/testdata/if_else/if_false.carbon +++ b/explorer/testdata/if_else/if_false.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/if_nesting.carbon b/explorer/testdata/if_else/if_nesting.carbon index ab0b4d847986..a6de40ea59d1 100644 --- a/explorer/testdata/if_else/if_nesting.carbon +++ b/explorer/testdata/if_else/if_nesting.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_else/if_true.carbon b/explorer/testdata/if_else/if_true.carbon index 67352b9417e3..96ffd3015281 100644 --- a/explorer/testdata/if_else/if_true.carbon +++ b/explorer/testdata/if_else/if_true.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_expression/convert_condition.carbon b/explorer/testdata/if_expression/convert_condition.carbon index 9183f7e3b769..a69d5d498def 100644 --- a/explorer/testdata/if_expression/convert_condition.carbon +++ b/explorer/testdata/if_expression/convert_condition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/if_expression/if_then_else.carbon b/explorer/testdata/if_expression/if_then_else.carbon index beaf7621ee03..447aad0542ba 100644 --- a/explorer/testdata/if_expression/if_then_else.carbon +++ b/explorer/testdata/if_expression/if_then_else.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/deducible_parameter.carbon b/explorer/testdata/impl/deducible_parameter.carbon index b8c4070405b4..e9287a1f0811 100644 --- a/explorer/testdata/impl/deducible_parameter.carbon +++ b/explorer/testdata/impl/deducible_parameter.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_bad_member_kind.carbon b/explorer/testdata/impl/fail_bad_member_kind.carbon index 074dc8e0bb7e..219552fe3307 100644 --- a/explorer/testdata/impl/fail_bad_member_kind.carbon +++ b/explorer/testdata/impl/fail_bad_member_kind.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_as.carbon b/explorer/testdata/impl/fail_impl_as.carbon index 3159f48f65be..36f5dad0e1a7 100644 --- a/explorer/testdata/impl/fail_impl_as.carbon +++ b/explorer/testdata/impl/fail_impl_as.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_as_non_interface.carbon b/explorer/testdata/impl/fail_impl_as_non_interface.carbon index 48ffe4302a5a..7db75b72f389 100644 --- a/explorer/testdata/impl/fail_impl_as_non_interface.carbon +++ b/explorer/testdata/impl/fail_impl_as_non_interface.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_as_not_constraint.carbon b/explorer/testdata/impl/fail_impl_as_not_constraint.carbon index de018bf6b63b..e31aacfa45f5 100644 --- a/explorer/testdata/impl/fail_impl_as_not_constraint.carbon +++ b/explorer/testdata/impl/fail_impl_as_not_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_as_parameterized.carbon b/explorer/testdata/impl/fail_impl_as_parameterized.carbon index a8849f26b42e..78e1b956a6f3 100644 --- a/explorer/testdata/impl/fail_impl_as_parameterized.carbon +++ b/explorer/testdata/impl/fail_impl_as_parameterized.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_as_symbolic.carbon b/explorer/testdata/impl/fail_impl_as_symbolic.carbon index 659ce78ea451..7fae8d4924bb 100644 --- a/explorer/testdata/impl/fail_impl_as_symbolic.carbon +++ b/explorer/testdata/impl/fail_impl_as_symbolic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_redefinition.carbon b/explorer/testdata/impl/fail_impl_redefinition.carbon index 82adf285bcf1..f01377724194 100644 --- a/explorer/testdata/impl/fail_impl_redefinition.carbon +++ b/explorer/testdata/impl/fail_impl_redefinition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_impl_symbolic_as.carbon b/explorer/testdata/impl/fail_impl_symbolic_as.carbon index f654bc329cee..61b072539cfa 100644 --- a/explorer/testdata/impl/fail_impl_symbolic_as.carbon +++ b/explorer/testdata/impl/fail_impl_symbolic_as.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_nondeducible_parameter.carbon b/explorer/testdata/impl/fail_nondeducible_parameter.carbon index 2f00770e5a77..ec8aa517fa1a 100644 --- a/explorer/testdata/impl/fail_nondeducible_parameter.carbon +++ b/explorer/testdata/impl/fail_nondeducible_parameter.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_param_interface_in_impl.carbon b/explorer/testdata/impl/fail_param_interface_in_impl.carbon index 2e75c5a0b62e..1357f52d1b33 100644 --- a/explorer/testdata/impl/fail_param_interface_in_impl.carbon +++ b/explorer/testdata/impl/fail_param_interface_in_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/fail_unmet_impls_constraint.carbon b/explorer/testdata/impl/fail_unmet_impls_constraint.carbon index c2c2ede35d6b..7f3d1979ec5c 100644 --- a/explorer/testdata/impl/fail_unmet_impls_constraint.carbon +++ b/explorer/testdata/impl/fail_unmet_impls_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/generic_method_impl.carbon b/explorer/testdata/impl/generic_method_impl.carbon index a7966b9a28c9..ca8022da78e1 100644 --- a/explorer/testdata/impl/generic_method_impl.carbon +++ b/explorer/testdata/impl/generic_method_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/impl_in_generic_class.carbon b/explorer/testdata/impl/impl_in_generic_class.carbon index 10396a207517..f7ac03811d18 100644 --- a/explorer/testdata/impl/impl_in_generic_class.carbon +++ b/explorer/testdata/impl/impl_in_generic_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/impls_constraint.carbon b/explorer/testdata/impl/impls_constraint.carbon index c29d6ef0ac5f..a840159dec38 100644 --- a/explorer/testdata/impl/impls_constraint.carbon +++ b/explorer/testdata/impl/impls_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/param_impl.carbon b/explorer/testdata/impl/param_impl.carbon index 13348ada015a..d145fdc54701 100644 --- a/explorer/testdata/impl/param_impl.carbon +++ b/explorer/testdata/impl/param_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/param_impl2.carbon b/explorer/testdata/impl/param_impl2.carbon index f8ccc7532859..a4f150fb2273 100644 --- a/explorer/testdata/impl/param_impl2.carbon +++ b/explorer/testdata/impl/param_impl2.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/param_impl_with_self.carbon b/explorer/testdata/impl/param_impl_with_self.carbon index 1ac4fdcad7f7..722a68a26dec 100644 --- a/explorer/testdata/impl/param_impl_with_self.carbon +++ b/explorer/testdata/impl/param_impl_with_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/param_interface_in_impl.carbon b/explorer/testdata/impl/param_interface_in_impl.carbon index d4f336253828..edcbd28b0898 100644 --- a/explorer/testdata/impl/param_interface_in_impl.carbon +++ b/explorer/testdata/impl/param_interface_in_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl/struct.carbon b/explorer/testdata/impl/struct.carbon index 699f4d78509d..bc8ef4c10008 100644 --- a/explorer/testdata/impl/struct.carbon +++ b/explorer/testdata/impl/struct.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/build_tree.carbon b/explorer/testdata/impl_match/build_tree.carbon index b984390ef457..3cdc13a8da23 100644 --- a/explorer/testdata/impl_match/build_tree.carbon +++ b/explorer/testdata/impl_match/build_tree.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/fail_self_recurse.carbon b/explorer/testdata/impl_match/fail_self_recurse.carbon index d3c088298052..5ae6627d9c77 100644 --- a/explorer/testdata/impl_match/fail_self_recurse.carbon +++ b/explorer/testdata/impl_match/fail_self_recurse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/fail_self_recurse_without_match_first.carbon b/explorer/testdata/impl_match/fail_self_recurse_without_match_first.carbon index 70dbfaeafc1e..bb7f092f7baa 100644 --- a/explorer/testdata/impl_match/fail_self_recurse_without_match_first.carbon +++ b/explorer/testdata/impl_match/fail_self_recurse_without_match_first.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/fail_simple_self_recurse.carbon b/explorer/testdata/impl_match/fail_simple_self_recurse.carbon index a3e9db97bf2b..a66e05a7fe1f 100644 --- a/explorer/testdata/impl_match/fail_simple_self_recurse.carbon +++ b/explorer/testdata/impl_match/fail_simple_self_recurse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/fail_struct_recurse.carbon b/explorer/testdata/impl_match/fail_struct_recurse.carbon index 7e4d4a69c494..8a8f9140a7cc 100644 --- a/explorer/testdata/impl_match/fail_struct_recurse.carbon +++ b/explorer/testdata/impl_match/fail_struct_recurse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/fail_three_step_recurse.carbon b/explorer/testdata/impl_match/fail_three_step_recurse.carbon index 17f49ccd863d..e23348da4725 100644 --- a/explorer/testdata/impl_match/fail_three_step_recurse.carbon +++ b/explorer/testdata/impl_match/fail_three_step_recurse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/fail_tuple_recurse.carbon b/explorer/testdata/impl_match/fail_tuple_recurse.carbon index 69dafdf0ff8e..86975f33da8f 100644 --- a/explorer/testdata/impl_match/fail_tuple_recurse.carbon +++ b/explorer/testdata/impl_match/fail_tuple_recurse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/match_first.carbon b/explorer/testdata/impl_match/match_first.carbon index 8c8a47a84761..946cb3c77f90 100644 --- a/explorer/testdata/impl_match/match_first.carbon +++ b/explorer/testdata/impl_match/match_first.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/non_overlapping_labels.carbon b/explorer/testdata/impl_match/non_overlapping_labels.carbon index 5f3fd0730d63..ac378f477f9d 100644 --- a/explorer/testdata/impl_match/non_overlapping_labels.carbon +++ b/explorer/testdata/impl_match/non_overlapping_labels.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/self_recurse_with_match.carbon b/explorer/testdata/impl_match/self_recurse_with_match.carbon index 3fe5949804e5..6933fb81ee14 100644 --- a/explorer/testdata/impl_match/self_recurse_with_match.carbon +++ b/explorer/testdata/impl_match/self_recurse_with_match.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/self_recurse_with_match_first.carbon b/explorer/testdata/impl_match/self_recurse_with_match_first.carbon index 18acde3d0675..328d6ffb5bd8 100644 --- a/explorer/testdata/impl_match/self_recurse_with_match_first.carbon +++ b/explorer/testdata/impl_match/self_recurse_with_match_first.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/specialization.carbon b/explorer/testdata/impl_match/specialization.carbon index 65f164074692..7205b8b231d8 100644 --- a/explorer/testdata/impl_match/specialization.carbon +++ b/explorer/testdata/impl_match/specialization.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/type_structure_bindings.carbon b/explorer/testdata/impl_match/type_structure_bindings.carbon index d1220969140a..7335c657d34e 100644 --- a/explorer/testdata/impl_match/type_structure_bindings.carbon +++ b/explorer/testdata/impl_match/type_structure_bindings.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/type_structure_order.carbon b/explorer/testdata/impl_match/type_structure_order.carbon index d4f22400f491..2d0964ae3522 100644 --- a/explorer/testdata/impl_match/type_structure_order.carbon +++ b/explorer/testdata/impl_match/type_structure_order.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/impl_match/type_structure_vs_match_first.carbon b/explorer/testdata/impl_match/type_structure_vs_match_first.carbon index 6c779210fb83..d3e7f15376a2 100644 --- a/explorer/testdata/impl_match/type_structure_vs_match_first.carbon +++ b/explorer/testdata/impl_match/type_structure_vs_match_first.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/import/fail_order.carbon b/explorer/testdata/import/fail_order.carbon index 24065c7ffc76..6a69d23f7843 100644 --- a/explorer/testdata/import/fail_order.carbon +++ b/explorer/testdata/import/fail_order.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/import/nonexistent_library.carbon b/explorer/testdata/import/nonexistent_library.carbon index d15c43c5a858..30899f87df31 100644 --- a/explorer/testdata/import/nonexistent_library.carbon +++ b/explorer/testdata/import/nonexistent_library.carbon @@ -4,7 +4,7 @@ // // TODO: This SHOULD fail but doesn't presently. // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/import/nonexistent_package.carbon b/explorer/testdata/import/nonexistent_package.carbon index 612f8e703756..13b57e1f44a3 100644 --- a/explorer/testdata/import/nonexistent_package.carbon +++ b/explorer/testdata/import/nonexistent_package.carbon @@ -4,7 +4,7 @@ // // TODO: This SHOULD fail but doesn't presently. // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/addr_self.carbon b/explorer/testdata/interface/addr_self.carbon index 917aa622ca85..c55602b8014e 100644 --- a/explorer/testdata/interface/addr_self.carbon +++ b/explorer/testdata/interface/addr_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/assoc_constant_constraints_in_scope.carbon b/explorer/testdata/interface/assoc_constant_constraints_in_scope.carbon index ba4ea8bc27f0..560ebb0874d5 100644 --- a/explorer/testdata/interface/assoc_constant_constraints_in_scope.carbon +++ b/explorer/testdata/interface/assoc_constant_constraints_in_scope.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/class_function.carbon b/explorer/testdata/interface/class_function.carbon index 601dd255ed39..42494078c673 100644 --- a/explorer/testdata/interface/class_function.carbon +++ b/explorer/testdata/interface/class_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/constrained_parameter.carbon b/explorer/testdata/interface/constrained_parameter.carbon index e06e36d63137..ab16779b020d 100644 --- a/explorer/testdata/interface/constrained_parameter.carbon +++ b/explorer/testdata/interface/constrained_parameter.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/extend.carbon b/explorer/testdata/interface/extend.carbon index 51d9547c2334..95c2186ec00c 100644 --- a/explorer/testdata/interface/extend.carbon +++ b/explorer/testdata/interface/extend.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/external_impl_point_vector.carbon b/explorer/testdata/interface/external_impl_point_vector.carbon index 6a78f894f3c2..9d6b34e12fe8 100644 --- a/explorer/testdata/interface/external_impl_point_vector.carbon +++ b/explorer/testdata/interface/external_impl_point_vector.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/external_impl_use_self.carbon b/explorer/testdata/interface/external_impl_use_self.carbon index 001a83cd0229..a1267eecbfbf 100644 --- a/explorer/testdata/interface/external_impl_use_self.carbon +++ b/explorer/testdata/interface/external_impl_use_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_bad_member_kind.carbon b/explorer/testdata/interface/fail_bad_member_kind.carbon index 2367d3ecdbd3..86a0342c4248 100644 --- a/explorer/testdata/interface/fail_bad_member_kind.carbon +++ b/explorer/testdata/interface/fail_bad_member_kind.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_extend_external.carbon b/explorer/testdata/interface/fail_extend_external.carbon index e65d63c2a3cb..30122c846639 100644 --- a/explorer/testdata/interface/fail_extend_external.carbon +++ b/explorer/testdata/interface/fail_extend_external.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_extend_not_constraint.carbon b/explorer/testdata/interface/fail_extend_not_constraint.carbon index db8c33165c0b..d1cd4f11d0b3 100644 --- a/explorer/testdata/interface/fail_extend_not_constraint.carbon +++ b/explorer/testdata/interface/fail_extend_not_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_extend_with_self.carbon b/explorer/testdata/interface/fail_extend_with_self.carbon index 06c7208301c5..da298b155945 100644 --- a/explorer/testdata/interface/fail_extend_with_self.carbon +++ b/explorer/testdata/interface/fail_extend_with_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_external_impl_omit_self.carbon b/explorer/testdata/interface/fail_external_impl_omit_self.carbon index d5842b456e9f..ad4811e9f90b 100644 --- a/explorer/testdata/interface/fail_external_impl_omit_self.carbon +++ b/explorer/testdata/interface/fail_external_impl_omit_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_external_impl_self.carbon b/explorer/testdata/interface/fail_external_impl_self.carbon index f3ae01daea93..cbc21edc1e89 100644 --- a/explorer/testdata/interface/fail_external_impl_self.carbon +++ b/explorer/testdata/interface/fail_external_impl_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_impl_adds_self.carbon b/explorer/testdata/interface/fail_impl_adds_self.carbon index a14d97768d1e..7ce725326407 100644 --- a/explorer/testdata/interface/fail_impl_adds_self.carbon +++ b/explorer/testdata/interface/fail_impl_adds_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_impl_bad_member.carbon b/explorer/testdata/interface/fail_impl_bad_member.carbon index ca4273c36ac6..2bb36dfff9fd 100644 --- a/explorer/testdata/interface/fail_impl_bad_member.carbon +++ b/explorer/testdata/interface/fail_impl_bad_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_impl_mismatch_self.carbon b/explorer/testdata/interface/fail_impl_mismatch_self.carbon index e922c9a5609f..f6f04db31e41 100644 --- a/explorer/testdata/interface/fail_impl_mismatch_self.carbon +++ b/explorer/testdata/interface/fail_impl_mismatch_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_impl_missing_member.carbon b/explorer/testdata/interface/fail_impl_missing_member.carbon index d6a565674555..19695ba31bf9 100644 --- a/explorer/testdata/interface/fail_impl_missing_member.carbon +++ b/explorer/testdata/interface/fail_impl_missing_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_impl_missing_self.carbon b/explorer/testdata/interface/fail_impl_missing_self.carbon index c96255cfaa2c..0865ce70fdc2 100644 --- a/explorer/testdata/interface/fail_impl_missing_self.carbon +++ b/explorer/testdata/interface/fail_impl_missing_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_impl_not_type.carbon b/explorer/testdata/interface/fail_impl_not_type.carbon index 05a845a4a420..7ea9c63b856f 100644 --- a/explorer/testdata/interface/fail_impl_not_type.carbon +++ b/explorer/testdata/interface/fail_impl_not_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_interface_missing_member.carbon b/explorer/testdata/interface/fail_interface_missing_member.carbon index 69bcdcbc93f1..b0588b67cb75 100644 --- a/explorer/testdata/interface/fail_interface_missing_member.carbon +++ b/explorer/testdata/interface/fail_interface_missing_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_member_lookup_in_definition.carbon b/explorer/testdata/interface/fail_member_lookup_in_definition.carbon index 00f7ee4e612c..594bfbcd492c 100644 --- a/explorer/testdata/interface/fail_member_lookup_in_definition.carbon +++ b/explorer/testdata/interface/fail_member_lookup_in_definition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_no_impl.carbon b/explorer/testdata/interface/fail_no_impl.carbon index d4749015cd02..fafec99f7801 100644 --- a/explorer/testdata/interface/fail_no_impl.carbon +++ b/explorer/testdata/interface/fail_no_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_qualified_method.carbon b/explorer/testdata/interface/fail_qualified_method.carbon index 186f5ea4a124..64b7c36f826a 100644 --- a/explorer/testdata/interface/fail_qualified_method.carbon +++ b/explorer/testdata/interface/fail_qualified_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_require_not_constraint.carbon b/explorer/testdata/interface/fail_require_not_constraint.carbon index 4c431eabc2a8..791c568ca7f0 100644 --- a/explorer/testdata/interface/fail_require_not_constraint.carbon +++ b/explorer/testdata/interface/fail_require_not_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_require_not_type.carbon b/explorer/testdata/interface/fail_require_not_type.carbon index a98af48fb7d6..a1866f6735fc 100644 --- a/explorer/testdata/interface/fail_require_not_type.carbon +++ b/explorer/testdata/interface/fail_require_not_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_self_lookup_in_definition.carbon b/explorer/testdata/interface/fail_self_lookup_in_definition.carbon index e8c1539518b5..bf703035df83 100644 --- a/explorer/testdata/interface/fail_self_lookup_in_definition.carbon +++ b/explorer/testdata/interface/fail_self_lookup_in_definition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_use_assoc_const_before_decl.carbon b/explorer/testdata/interface/fail_use_assoc_const_before_decl.carbon index 2f88e4cd4f83..8cf4d22a6fa4 100644 --- a/explorer/testdata/interface/fail_use_assoc_const_before_decl.carbon +++ b/explorer/testdata/interface/fail_use_assoc_const_before_decl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_use_assoc_const_in_defn.carbon b/explorer/testdata/interface/fail_use_assoc_const_in_defn.carbon index bdd6fa95015b..82d9f79e2a21 100644 --- a/explorer/testdata/interface/fail_use_assoc_const_in_defn.carbon +++ b/explorer/testdata/interface/fail_use_assoc_const_in_defn.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/fail_use_symbolic_member.carbon b/explorer/testdata/interface/fail_use_symbolic_member.carbon index 8423f280ab19..4d9bc263f372 100644 --- a/explorer/testdata/interface/fail_use_symbolic_member.carbon +++ b/explorer/testdata/interface/fail_use_symbolic_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/generic_call_generic.carbon b/explorer/testdata/interface/generic_call_generic.carbon index cd5d1dabbe08..8f4e8ca43b2d 100644 --- a/explorer/testdata/interface/generic_call_generic.carbon +++ b/explorer/testdata/interface/generic_call_generic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/generic_with_two_params.carbon b/explorer/testdata/interface/generic_with_two_params.carbon index 0383f36eac71..77304c0a26be 100644 --- a/explorer/testdata/interface/generic_with_two_params.carbon +++ b/explorer/testdata/interface/generic_with_two_params.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/impl_self_interface_parameter.carbon b/explorer/testdata/interface/impl_self_interface_parameter.carbon index 0e0438d7bc46..51bdabe457bc 100644 --- a/explorer/testdata/interface/impl_self_interface_parameter.carbon +++ b/explorer/testdata/interface/impl_self_interface_parameter.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/interface_name_invalid.carbon b/explorer/testdata/interface/interface_name_invalid.carbon index e93c2c40e83d..64dc727e77a5 100644 --- a/explorer/testdata/interface/interface_name_invalid.carbon +++ b/explorer/testdata/interface/interface_name_invalid.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/omit_self.carbon b/explorer/testdata/interface/omit_self.carbon index bd36677bf58e..873d551e4285 100644 --- a/explorer/testdata/interface/omit_self.carbon +++ b/explorer/testdata/interface/omit_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/param_with_dependent_type.carbon b/explorer/testdata/interface/param_with_dependent_type.carbon index ba1df80d22df..c6edbf3a0ee4 100644 --- a/explorer/testdata/interface/param_with_dependent_type.carbon +++ b/explorer/testdata/interface/param_with_dependent_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/parameterized.carbon b/explorer/testdata/interface/parameterized.carbon index bf40f2d7a788..8696e83cc13d 100644 --- a/explorer/testdata/interface/parameterized.carbon +++ b/explorer/testdata/interface/parameterized.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/require.carbon b/explorer/testdata/interface/require.carbon index ee32a812b59c..31137321de64 100644 --- a/explorer/testdata/interface/require.carbon +++ b/explorer/testdata/interface/require.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/require_not_self.carbon b/explorer/testdata/interface/require_not_self.carbon index bfa64a4bb856..55ff21841f38 100644 --- a/explorer/testdata/interface/require_not_self.carbon +++ b/explorer/testdata/interface/require_not_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/tuple_vector_add_scale.carbon b/explorer/testdata/interface/tuple_vector_add_scale.carbon index 32e347a8502c..b80f4d1df4da 100644 --- a/explorer/testdata/interface/tuple_vector_add_scale.carbon +++ b/explorer/testdata/interface/tuple_vector_add_scale.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/type_of_type.carbon b/explorer/testdata/interface/type_of_type.carbon index f41abbb6b3a6..c20719d9becd 100644 --- a/explorer/testdata/interface/type_of_type.carbon +++ b/explorer/testdata/interface/type_of_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/vector_point_add_scale.carbon b/explorer/testdata/interface/vector_point_add_scale.carbon index 099758adce2f..970a07a85073 100644 --- a/explorer/testdata/interface/vector_point_add_scale.carbon +++ b/explorer/testdata/interface/vector_point_add_scale.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/interface/with_self.carbon b/explorer/testdata/interface/with_self.carbon index dc1d22fc2d2e..f526e57ed586 100644 --- a/explorer/testdata/interface/with_self.carbon +++ b/explorer/testdata/interface/with_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/destroyed.carbon b/explorer/testdata/let/destroyed.carbon index 49f052735dce..76dfdb354569 100644 --- a/explorer/testdata/let/destroyed.carbon +++ b/explorer/testdata/let/destroyed.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_function_args.carbon b/explorer/testdata/let/fail_function_args.carbon index 5b28c8a4c58e..2d7c78af90bc 100644 --- a/explorer/testdata/let/fail_function_args.carbon +++ b/explorer/testdata/let/fail_function_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_global_assign.carbon b/explorer/testdata/let/fail_global_assign.carbon index 350790b8fc0b..7f51f8def4fd 100644 --- a/explorer/testdata/let/fail_global_assign.carbon +++ b/explorer/testdata/let/fail_global_assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_global_named_self.carbon b/explorer/testdata/let/fail_global_named_self.carbon index 03c73f8de907..6d857bb0849c 100644 --- a/explorer/testdata/let/fail_global_named_self.carbon +++ b/explorer/testdata/let/fail_global_named_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_local_assign.carbon b/explorer/testdata/let/fail_local_assign.carbon index a385e1fd9848..b48dec1c0cd6 100644 --- a/explorer/testdata/let/fail_local_assign.carbon +++ b/explorer/testdata/let/fail_local_assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_local_named_self.carbon b/explorer/testdata/let/fail_local_named_self.carbon index 4810e4187c67..16834471345b 100644 --- a/explorer/testdata/let/fail_local_named_self.carbon +++ b/explorer/testdata/let/fail_local_named_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_match_choice.carbon b/explorer/testdata/let/fail_match_choice.carbon index 8d7b3cf3c0e5..45ddb8173d07 100644 --- a/explorer/testdata/let/fail_match_choice.carbon +++ b/explorer/testdata/let/fail_match_choice.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_method_args.carbon b/explorer/testdata/let/fail_method_args.carbon index 374930240aa5..9f84d62d5ba1 100644 --- a/explorer/testdata/let/fail_method_args.carbon +++ b/explorer/testdata/let/fail_method_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_pinned_value_changed.carbon b/explorer/testdata/let/fail_pinned_value_changed.carbon index 10b306a48c02..4ee4fd9541cf 100644 --- a/explorer/testdata/let/fail_pinned_value_changed.carbon +++ b/explorer/testdata/let/fail_pinned_value_changed.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_pinned_value_restored.carbon b/explorer/testdata/let/fail_pinned_value_restored.carbon index 7fe9854a3c5f..fa0f0106e1ea 100644 --- a/explorer/testdata/let/fail_pinned_value_restored.carbon +++ b/explorer/testdata/let/fail_pinned_value_restored.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_pinned_value_subobject_changed.carbon b/explorer/testdata/let/fail_pinned_value_subobject_changed.carbon index 107d01e9d73f..8f51c369394b 100644 --- a/explorer/testdata/let/fail_pinned_value_subobject_changed.carbon +++ b/explorer/testdata/let/fail_pinned_value_subobject_changed.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_tuple_pattern_let_context.carbon b/explorer/testdata/let/fail_tuple_pattern_let_context.carbon index 2a60718f9460..176b6e42c6f6 100644 --- a/explorer/testdata/let/fail_tuple_pattern_let_context.carbon +++ b/explorer/testdata/let/fail_tuple_pattern_let_context.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_tuple_pattern_let_context_nested.carbon b/explorer/testdata/let/fail_tuple_pattern_let_context_nested.carbon index a76f963519d3..0772e718ced5 100644 --- a/explorer/testdata/let/fail_tuple_pattern_let_context_nested.carbon +++ b/explorer/testdata/let/fail_tuple_pattern_let_context_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/fail_tuple_pattern_let_in_var.carbon b/explorer/testdata/let/fail_tuple_pattern_let_in_var.carbon index 9b04df9f42b9..4fa0c60d9998 100644 --- a/explorer/testdata/let/fail_tuple_pattern_let_in_var.carbon +++ b/explorer/testdata/let/fail_tuple_pattern_let_in_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/implicit_conversion.carbon b/explorer/testdata/let/implicit_conversion.carbon index af0d1c4da241..77c0cd31ac53 100644 --- a/explorer/testdata/let/implicit_conversion.carbon +++ b/explorer/testdata/let/implicit_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/implicit_conversion_choice.carbon b/explorer/testdata/let/implicit_conversion_choice.carbon index e9838c51b10b..3f3fec5ddc4f 100644 --- a/explorer/testdata/let/implicit_conversion_choice.carbon +++ b/explorer/testdata/let/implicit_conversion_choice.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/nested_tuple_pattern.carbon b/explorer/testdata/let/nested_tuple_pattern.carbon index 2754f5d76644..ab0c58c7e6f7 100644 --- a/explorer/testdata/let/nested_tuple_pattern.carbon +++ b/explorer/testdata/let/nested_tuple_pattern.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/pinned_value_copied.carbon b/explorer/testdata/let/pinned_value_copied.carbon index 046746b42702..21cf43c240d6 100644 --- a/explorer/testdata/let/pinned_value_copied.carbon +++ b/explorer/testdata/let/pinned_value_copied.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/pinned_value_multiple_times.carbon b/explorer/testdata/let/pinned_value_multiple_times.carbon index 1eedd049188c..67f822190472 100644 --- a/explorer/testdata/let/pinned_value_multiple_times.carbon +++ b/explorer/testdata/let/pinned_value_multiple_times.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/pinned_value_mutation_unread_data.carbon b/explorer/testdata/let/pinned_value_mutation_unread_data.carbon index 7e9e157a0c20..6fbf6678d7ca 100644 --- a/explorer/testdata/let/pinned_value_mutation_unread_data.carbon +++ b/explorer/testdata/let/pinned_value_mutation_unread_data.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/pinned_value_mutation_unused.carbon b/explorer/testdata/let/pinned_value_mutation_unused.carbon index 3cc690d4c111..908f4ea8131f 100644 --- a/explorer/testdata/let/pinned_value_mutation_unused.carbon +++ b/explorer/testdata/let/pinned_value_mutation_unused.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_binding_from_initializing_expr.carbon b/explorer/testdata/let/value_expr_binding_from_initializing_expr.carbon index 8a9c22061a32..f57e9713c2e6 100644 --- a/explorer/testdata/let/value_expr_binding_from_initializing_expr.carbon +++ b/explorer/testdata/let/value_expr_binding_from_initializing_expr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_binding_from_reference.carbon b/explorer/testdata/let/value_expr_binding_from_reference.carbon index 712b6d959fb4..a25f9dd34d0f 100644 --- a/explorer/testdata/let/value_expr_binding_from_reference.carbon +++ b/explorer/testdata/let/value_expr_binding_from_reference.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_binding_from_temp_value.carbon b/explorer/testdata/let/value_expr_binding_from_temp_value.carbon index 13a603279571..8bcb9a62dcd0 100644 --- a/explorer/testdata/let/value_expr_binding_from_temp_value.carbon +++ b/explorer/testdata/let/value_expr_binding_from_temp_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_binding_from_value.carbon b/explorer/testdata/let/value_expr_binding_from_value.carbon index f9be6f2a0640..a72f62656f7a 100644 --- a/explorer/testdata/let/value_expr_binding_from_value.carbon +++ b/explorer/testdata/let/value_expr_binding_from_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_initializing.carbon b/explorer/testdata/let/value_expr_from_initializing.carbon index 43ba6ce83221..52ff8242ad88 100644 --- a/explorer/testdata/let/value_expr_from_initializing.carbon +++ b/explorer/testdata/let/value_expr_from_initializing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_initializing_returned.carbon b/explorer/testdata/let/value_expr_from_initializing_returned.carbon index 6ef0245c2f73..7434822b7748 100644 --- a/explorer/testdata/let/value_expr_from_initializing_returned.carbon +++ b/explorer/testdata/let/value_expr_from_initializing_returned.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_initializing_returned_nested.carbon b/explorer/testdata/let/value_expr_from_initializing_returned_nested.carbon index 96b34dc6a7a6..2e8544ca4683 100644 --- a/explorer/testdata/let/value_expr_from_initializing_returned_nested.carbon +++ b/explorer/testdata/let/value_expr_from_initializing_returned_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_reference.carbon b/explorer/testdata/let/value_expr_from_reference.carbon index 070ce7dc4805..9f898355fbd9 100644 --- a/explorer/testdata/let/value_expr_from_reference.carbon +++ b/explorer/testdata/let/value_expr_from_reference.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_reference_deref.carbon b/explorer/testdata/let/value_expr_from_reference_deref.carbon index 61433e4c3cda..eb0b32c43eca 100644 --- a/explorer/testdata/let/value_expr_from_reference_deref.carbon +++ b/explorer/testdata/let/value_expr_from_reference_deref.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_reference_subobject.carbon b/explorer/testdata/let/value_expr_from_reference_subobject.carbon index 4d14619adfae..90dc52a2570e 100644 --- a/explorer/testdata/let/value_expr_from_reference_subobject.carbon +++ b/explorer/testdata/let/value_expr_from_reference_subobject.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/let/value_expr_from_value.carbon b/explorer/testdata/let/value_expr_from_value.carbon index 27a11c871a8f..716a073f196b 100644 --- a/explorer/testdata/let/value_expr_from_value.carbon +++ b/explorer/testdata/let/value_expr_from_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/limits/fail_allocate.carbon b/explorer/testdata/limits/fail_allocate.carbon index f596f4832a1f..28b207dca94f 100644 --- a/explorer/testdata/limits/fail_allocate.carbon +++ b/explorer/testdata/limits/fail_allocate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package EmptyIdentifier impl; diff --git a/explorer/testdata/limits/fail_function_recursion.carbon b/explorer/testdata/limits/fail_function_recursion.carbon index 2d6a1df0bd49..c626d7efa14b 100644 --- a/explorer/testdata/limits/fail_function_recursion.carbon +++ b/explorer/testdata/limits/fail_function_recursion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package EmptyIdentifier impl; diff --git a/explorer/testdata/limits/fail_loop.carbon b/explorer/testdata/limits/fail_loop.carbon index 57a5bd9b4593..8685cf9e469b 100644 --- a/explorer/testdata/limits/fail_loop.carbon +++ b/explorer/testdata/limits/fail_loop.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/limits/fail_type_check_loop.carbon b/explorer/testdata/limits/fail_type_check_loop.carbon index 88bfb83a5eb0..c5a34f33d572 100644 --- a/explorer/testdata/limits/fail_type_check_loop.carbon +++ b/explorer/testdata/limits/fail_type_check_loop.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/linked_list/fuzzed_linked_list.carbon b/explorer/testdata/linked_list/fuzzed_linked_list.carbon index 5c6f86f071b0..625859734e2c 100644 --- a/explorer/testdata/linked_list/fuzzed_linked_list.carbon +++ b/explorer/testdata/linked_list/fuzzed_linked_list.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/linked_list/linked_list.carbon b/explorer/testdata/linked_list/linked_list.carbon index 82ece7b86318..20ee61dbaff8 100644 --- a/explorer/testdata/linked_list/linked_list.carbon +++ b/explorer/testdata/linked_list/linked_list.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/linked_list/typed_linked_list.carbon b/explorer/testdata/linked_list/typed_linked_list.carbon index 6cb54ea16804..d45d56bd76cb 100644 --- a/explorer/testdata/linked_list/typed_linked_list.carbon +++ b/explorer/testdata/linked_list/typed_linked_list.carbon @@ -3,7 +3,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // // This doesn't test trace ouptut because it's too slow. -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; class Node(T:! type) { diff --git a/explorer/testdata/match/any_int.carbon b/explorer/testdata/match/any_int.carbon index 375808d0f798..a99ded06d067 100644 --- a/explorer/testdata/match/any_int.carbon +++ b/explorer/testdata/match/any_int.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/convert.carbon b/explorer/testdata/match/convert.carbon index 6c5edb48c138..fbf86fc89547 100644 --- a/explorer/testdata/match/convert.carbon +++ b/explorer/testdata/match/convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/exhaustive.carbon b/explorer/testdata/match/exhaustive.carbon index 38fc45a27bde..95599548f891 100644 --- a/explorer/testdata/match/exhaustive.carbon +++ b/explorer/testdata/match/exhaustive.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/exhaustive_bool.carbon b/explorer/testdata/match/exhaustive_bool.carbon index 7134e93955c3..c273f5fb73e2 100644 --- a/explorer/testdata/match/exhaustive_bool.carbon +++ b/explorer/testdata/match/exhaustive_bool.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/exhaustive_exponential_8x.carbon b/explorer/testdata/match/exhaustive_exponential_8x.carbon index 7c231625186f..7d3893fc0d5c 100644 --- a/explorer/testdata/match/exhaustive_exponential_8x.carbon +++ b/explorer/testdata/match/exhaustive_exponential_8x.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/exhaustive_exponential_series_t.carbon b/explorer/testdata/match/exhaustive_exponential_series_t.carbon index d3f836c3b74c..8c707c72195a 100644 --- a/explorer/testdata/match/exhaustive_exponential_series_t.carbon +++ b/explorer/testdata/match/exhaustive_exponential_series_t.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_exhaustive_exponential_9x.carbon b/explorer/testdata/match/fail_exhaustive_exponential_9x.carbon index 0b23fb5b73b9..4b9ef591c7b9 100644 --- a/explorer/testdata/match/fail_exhaustive_exponential_9x.carbon +++ b/explorer/testdata/match/fail_exhaustive_exponential_9x.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_exhaustive_exponential_series_t.carbon b/explorer/testdata/match/fail_exhaustive_exponential_series_t.carbon index 5cffe47f0b68..af20f80c8b1f 100644 --- a/explorer/testdata/match/fail_exhaustive_exponential_series_t.carbon +++ b/explorer/testdata/match/fail_exhaustive_exponential_series_t.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_exhaustive_int.carbon b/explorer/testdata/match/fail_exhaustive_int.carbon index 38ed0daba0d0..1691b44d265d 100644 --- a/explorer/testdata/match/fail_exhaustive_int.carbon +++ b/explorer/testdata/match/fail_exhaustive_int.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_not_alternative.carbon b/explorer/testdata/match/fail_not_alternative.carbon index 9afe8750c1a5..b12dfa4fd9cb 100644 --- a/explorer/testdata/match/fail_not_alternative.carbon +++ b/explorer/testdata/match/fail_not_alternative.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_not_exhaustive.carbon b/explorer/testdata/match/fail_not_exhaustive.carbon index 1490518bfc02..cff672941f44 100644 --- a/explorer/testdata/match/fail_not_exhaustive.carbon +++ b/explorer/testdata/match/fail_not_exhaustive.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_not_reachable.carbon b/explorer/testdata/match/fail_not_reachable.carbon index f1db492d1271..e38ca5e10ba1 100644 --- a/explorer/testdata/match/fail_not_reachable.carbon +++ b/explorer/testdata/match/fail_not_reachable.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_not_reachable_default.carbon b/explorer/testdata/match/fail_not_reachable_default.carbon index 7a49b9bd5bb5..e58f977c4fb1 100644 --- a/explorer/testdata/match/fail_not_reachable_default.carbon +++ b/explorer/testdata/match/fail_not_reachable_default.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_pattern_type_mismatch.carbon b/explorer/testdata/match/fail_pattern_type_mismatch.carbon index 27b84bfc2af5..ad27de777e5b 100644 --- a/explorer/testdata/match/fail_pattern_type_mismatch.carbon +++ b/explorer/testdata/match/fail_pattern_type_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/fail_redundant_int.carbon b/explorer/testdata/match/fail_redundant_int.carbon index e81c097e94ea..c2e05e551e1b 100644 --- a/explorer/testdata/match/fail_redundant_int.carbon +++ b/explorer/testdata/match/fail_redundant_int.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/int.carbon b/explorer/testdata/match/int.carbon index eebe9ab0429d..352c126cc7a4 100644 --- a/explorer/testdata/match/int.carbon +++ b/explorer/testdata/match/int.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/int_default.carbon b/explorer/testdata/match/int_default.carbon index 851d04a62b18..0f6a67bb680c 100644 --- a/explorer/testdata/match/int_default.carbon +++ b/explorer/testdata/match/int_default.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/no_match.carbon b/explorer/testdata/match/no_match.carbon index 9fcb14ad0be6..b3c0b8e2e833 100644 --- a/explorer/testdata/match/no_match.carbon +++ b/explorer/testdata/match/no_match.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/match/placeholder.carbon b/explorer/testdata/match/placeholder.carbon index 661fe92f7c47..372012a9917e 100644 --- a/explorer/testdata/match/placeholder.carbon +++ b/explorer/testdata/match/placeholder.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/member_access/arrow.carbon b/explorer/testdata/member_access/arrow.carbon index e727ebb09b60..e09789a31f76 100644 --- a/explorer/testdata/member_access/arrow.carbon +++ b/explorer/testdata/member_access/arrow.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; class X { diff --git a/explorer/testdata/member_access/convert_lhs_class.carbon b/explorer/testdata/member_access/convert_lhs_class.carbon index f9170df6980e..b9db4f8eac72 100644 --- a/explorer/testdata/member_access/convert_lhs_class.carbon +++ b/explorer/testdata/member_access/convert_lhs_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; diff --git a/explorer/testdata/member_access/convert_lhs_interface.carbon b/explorer/testdata/member_access/convert_lhs_interface.carbon index e704e02e7c2d..81d5d229af44 100644 --- a/explorer/testdata/member_access/convert_lhs_interface.carbon +++ b/explorer/testdata/member_access/convert_lhs_interface.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; diff --git a/explorer/testdata/member_access/convert_lhs_struct.carbon b/explorer/testdata/member_access/convert_lhs_struct.carbon index 6e1f1f719193..02cc55c70418 100644 --- a/explorer/testdata/member_access/convert_lhs_struct.carbon +++ b/explorer/testdata/member_access/convert_lhs_struct.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; diff --git a/explorer/testdata/member_access/evaluate_type_before_dot.carbon b/explorer/testdata/member_access/evaluate_type_before_dot.carbon index 43916708f315..dff8a311607b 100644 --- a/explorer/testdata/member_access/evaluate_type_before_dot.carbon +++ b/explorer/testdata/member_access/evaluate_type_before_dot.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; diff --git a/explorer/testdata/member_access/fail_qualified_non_member.carbon b/explorer/testdata/member_access/fail_qualified_non_member.carbon index 1f29b4a8300f..6a1fedb1cb9d 100644 --- a/explorer/testdata/member_access/fail_qualified_non_member.carbon +++ b/explorer/testdata/member_access/fail_qualified_non_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; fn F[self: i32]() {} diff --git a/explorer/testdata/member_access/fail_vacuous_access.carbon b/explorer/testdata/member_access/fail_vacuous_access.carbon index b907693c91ea..aae4d2a8f7a3 100644 --- a/explorer/testdata/member_access/fail_vacuous_access.carbon +++ b/explorer/testdata/member_access/fail_vacuous_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { fn F() -> i32; } diff --git a/explorer/testdata/member_access/fail_vacuous_access_via_type_param.carbon b/explorer/testdata/member_access/fail_vacuous_access_via_type_param.carbon index cb05a1e25919..834bf3d2025a 100644 --- a/explorer/testdata/member_access/fail_vacuous_access_via_type_param.carbon +++ b/explorer/testdata/member_access/fail_vacuous_access_via_type_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { fn F() -> i32; } diff --git a/explorer/testdata/member_access/nearly_vacuous_access_with_impl_lookup.carbon b/explorer/testdata/member_access/nearly_vacuous_access_with_impl_lookup.carbon index 1dad7970b4d8..bc08c5f0cb72 100644 --- a/explorer/testdata/member_access/nearly_vacuous_access_with_impl_lookup.carbon +++ b/explorer/testdata/member_access/nearly_vacuous_access_with_impl_lookup.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { fn F() -> i32; } diff --git a/explorer/testdata/member_access/nearly_vacuous_access_with_instance_binding.carbon b/explorer/testdata/member_access/nearly_vacuous_access_with_instance_binding.carbon index f7fbedabdcf8..50af72ea6022 100644 --- a/explorer/testdata/member_access/nearly_vacuous_access_with_instance_binding.carbon +++ b/explorer/testdata/member_access/nearly_vacuous_access_with_instance_binding.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { fn F[self: Self]() -> i32; } diff --git a/explorer/testdata/member_access/param_qualified_interface_member.carbon b/explorer/testdata/member_access/param_qualified_interface_member.carbon index bad11902ba8a..8450f94d48f4 100644 --- a/explorer/testdata/member_access/param_qualified_interface_member.carbon +++ b/explorer/testdata/member_access/param_qualified_interface_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { diff --git a/explorer/testdata/member_access/qualified_class_member.carbon b/explorer/testdata/member_access/qualified_class_member.carbon index 01ae3607926b..2f97c2126269 100644 --- a/explorer/testdata/member_access/qualified_class_member.carbon +++ b/explorer/testdata/member_access/qualified_class_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; class X { diff --git a/explorer/testdata/member_access/qualified_constraint_member.carbon b/explorer/testdata/member_access/qualified_constraint_member.carbon index 0bee7b6d0b75..8d3b1d4b7c3c 100644 --- a/explorer/testdata/member_access/qualified_constraint_member.carbon +++ b/explorer/testdata/member_access/qualified_constraint_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { diff --git a/explorer/testdata/member_access/qualified_interface_member.carbon b/explorer/testdata/member_access/qualified_interface_member.carbon index 3ac01a9598d7..24438a8de3c3 100644 --- a/explorer/testdata/member_access/qualified_interface_member.carbon +++ b/explorer/testdata/member_access/qualified_interface_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { diff --git a/explorer/testdata/member_access/qualified_param_member.carbon b/explorer/testdata/member_access/qualified_param_member.carbon index 0ec2608407c6..894191a8c129 100644 --- a/explorer/testdata/member_access/qualified_param_member.carbon +++ b/explorer/testdata/member_access/qualified_param_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface A { diff --git a/explorer/testdata/member_access/qualified_struct_member.carbon b/explorer/testdata/member_access/qualified_struct_member.carbon index 23f196eba3b4..6b3ead6bd63c 100644 --- a/explorer/testdata/member_access/qualified_struct_member.carbon +++ b/explorer/testdata/member_access/qualified_struct_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; fn Main() -> i32 { diff --git a/explorer/testdata/member_access/type_qualified_interface_member.carbon b/explorer/testdata/member_access/type_qualified_interface_member.carbon index 0d52606b8220..c99d7b44e06f 100644 --- a/explorer/testdata/member_access/type_qualified_interface_member.carbon +++ b/explorer/testdata/member_access/type_qualified_interface_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; interface HasDefault { diff --git a/explorer/testdata/mixin/fail_circular_mixing.carbon b/explorer/testdata/mixin/fail_circular_mixing.carbon index 36079967ae07..e8264ad43113 100644 --- a/explorer/testdata/mixin/fail_circular_mixing.carbon +++ b/explorer/testdata/mixin/fail_circular_mixing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; __mixin M1 { diff --git a/explorer/testdata/mixin/fail_field_member_name_clash.carbon b/explorer/testdata/mixin/fail_field_member_name_clash.carbon index 596d1f63d4cc..163321bdfe4b 100644 --- a/explorer/testdata/mixin/fail_field_member_name_clash.carbon +++ b/explorer/testdata/mixin/fail_field_member_name_clash.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_method_member_name_clash.carbon b/explorer/testdata/mixin/fail_method_member_name_clash.carbon index 4b61617ce0cf..3176df2cfe74 100644 --- a/explorer/testdata/mixin/fail_method_member_name_clash.carbon +++ b/explorer/testdata/mixin/fail_method_member_name_clash.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_as_alias_target.carbon b/explorer/testdata/mixin/fail_mix_as_alias_target.carbon index 7297be1d68f7..31924761ba12 100644 --- a/explorer/testdata/mixin/fail_mix_as_alias_target.carbon +++ b/explorer/testdata/mixin/fail_mix_as_alias_target.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_as_type_expr.carbon b/explorer/testdata/mixin/fail_mix_as_type_expr.carbon index e8700120e2aa..e5e5fa65cc87 100644 --- a/explorer/testdata/mixin/fail_mix_as_type_expr.carbon +++ b/explorer/testdata/mixin/fail_mix_as_type_expr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_diamond_clash.carbon b/explorer/testdata/mixin/fail_mix_diamond_clash.carbon index d39f48f57263..e5e922be393e 100644 --- a/explorer/testdata/mixin/fail_mix_diamond_clash.carbon +++ b/explorer/testdata/mixin/fail_mix_diamond_clash.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; __mixin M1 { diff --git a/explorer/testdata/mixin/fail_mix_in_global.carbon b/explorer/testdata/mixin/fail_mix_in_global.carbon index 09d4423671fd..4b459b5bb399 100644 --- a/explorer/testdata/mixin/fail_mix_in_global.carbon +++ b/explorer/testdata/mixin/fail_mix_in_global.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_in_impl.carbon b/explorer/testdata/mixin/fail_mix_in_impl.carbon index a10f0df2d157..59b60fc7043c 100644 --- a/explorer/testdata/mixin/fail_mix_in_impl.carbon +++ b/explorer/testdata/mixin/fail_mix_in_impl.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_invalid.carbon b/explorer/testdata/mixin/fail_mix_invalid.carbon index 31cc4010a522..b25879cc9575 100644 --- a/explorer/testdata/mixin/fail_mix_invalid.carbon +++ b/explorer/testdata/mixin/fail_mix_invalid.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_invalid_array.carbon b/explorer/testdata/mixin/fail_mix_invalid_array.carbon index e1e2881f9d71..2babdc3a532e 100644 --- a/explorer/testdata/mixin/fail_mix_invalid_array.carbon +++ b/explorer/testdata/mixin/fail_mix_invalid_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_mix_members_clash.carbon b/explorer/testdata/mixin/fail_mix_members_clash.carbon index 16149598baa2..9ff525f0fa14 100644 --- a/explorer/testdata/mixin/fail_mix_members_clash.carbon +++ b/explorer/testdata/mixin/fail_mix_members_clash.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; __mixin M1 { diff --git a/explorer/testdata/mixin/fail_qualified_method.carbon b/explorer/testdata/mixin/fail_qualified_method.carbon index 7a367178cbd7..064c256e99df 100644 --- a/explorer/testdata/mixin/fail_qualified_method.carbon +++ b/explorer/testdata/mixin/fail_qualified_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/fail_recursive_mixing.carbon b/explorer/testdata/mixin/fail_recursive_mixing.carbon index 5d4448e346a0..5631282023be 100644 --- a/explorer/testdata/mixin/fail_recursive_mixing.carbon +++ b/explorer/testdata/mixin/fail_recursive_mixing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; __mixin M1 { diff --git a/explorer/testdata/mixin/fail_self_substitution.carbon b/explorer/testdata/mixin/fail_self_substitution.carbon index b6ed781e8e92..780961840c92 100644 --- a/explorer/testdata/mixin/fail_self_substitution.carbon +++ b/explorer/testdata/mixin/fail_self_substitution.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/self_substitution.carbon b/explorer/testdata/mixin/self_substitution.carbon index 22deb1358dd4..fe332d6017c8 100644 --- a/explorer/testdata/mixin/self_substitution.carbon +++ b/explorer/testdata/mixin/self_substitution.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/simple_mix_in_mixin.carbon b/explorer/testdata/mixin/simple_mix_in_mixin.carbon index 5276327967df..3fd736d72233 100644 --- a/explorer/testdata/mixin/simple_mix_in_mixin.carbon +++ b/explorer/testdata/mixin/simple_mix_in_mixin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/simple_reuse.carbon b/explorer/testdata/mixin/simple_reuse.carbon index ebe914157c11..cbf212d0b14c 100644 --- a/explorer/testdata/mixin/simple_reuse.carbon +++ b/explorer/testdata/mixin/simple_reuse.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/mixin/use_mixin_method_in_class_method.carbon b/explorer/testdata/mixin/use_mixin_method_in_class_method.carbon index f7e29e3a01bb..786a1781483c 100644 --- a/explorer/testdata/mixin/use_mixin_method_in_class_method.carbon +++ b/explorer/testdata/mixin/use_mixin_method_in_class_method.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/class_fn_body_reorder.carbon b/explorer/testdata/name_lookup/class_fn_body_reorder.carbon index 3b974c066a78..f0ffb288eb28 100644 --- a/explorer/testdata/name_lookup/class_fn_body_reorder.carbon +++ b/explorer/testdata/name_lookup/class_fn_body_reorder.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_block_duplicate.carbon b/explorer/testdata/name_lookup/fail_block_duplicate.carbon index 7a568fc9bd92..abb45ca333c8 100644 --- a/explorer/testdata/name_lookup/fail_block_duplicate.carbon +++ b/explorer/testdata/name_lookup/fail_block_duplicate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_choice_duplicate.carbon b/explorer/testdata/name_lookup/fail_choice_duplicate.carbon index fc87d221cf61..eca29344d92c 100644 --- a/explorer/testdata/name_lookup/fail_choice_duplicate.carbon +++ b/explorer/testdata/name_lookup/fail_choice_duplicate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_class_duplicate.carbon b/explorer/testdata/name_lookup/fail_class_duplicate.carbon index be5b507d29e8..3afa70c7503c 100644 --- a/explorer/testdata/name_lookup/fail_class_duplicate.carbon +++ b/explorer/testdata/name_lookup/fail_class_duplicate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_class_fn_use_before_declaration.carbon b/explorer/testdata/name_lookup/fail_class_fn_use_before_declaration.carbon index 3929f5bb3562..28d1b9396938 100644 --- a/explorer/testdata/name_lookup/fail_class_fn_use_before_declaration.carbon +++ b/explorer/testdata/name_lookup/fail_class_fn_use_before_declaration.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_class_use_in_params.carbon b/explorer/testdata/name_lookup/fail_class_use_in_params.carbon index 930a435ec786..cca5fcda848e 100644 --- a/explorer/testdata/name_lookup/fail_class_use_in_params.carbon +++ b/explorer/testdata/name_lookup/fail_class_use_in_params.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_fn_use_in_param.carbon b/explorer/testdata/name_lookup/fail_fn_use_in_param.carbon index 9a90d269adf0..f6e365d08438 100644 --- a/explorer/testdata/name_lookup/fail_fn_use_in_param.carbon +++ b/explorer/testdata/name_lookup/fail_fn_use_in_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_fn_use_in_return_type.carbon b/explorer/testdata/name_lookup/fail_fn_use_in_return_type.carbon index 5b03936e776a..9e6e00b95e36 100644 --- a/explorer/testdata/name_lookup/fail_fn_use_in_return_type.carbon +++ b/explorer/testdata/name_lookup/fail_fn_use_in_return_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_global_duplicate.carbon b/explorer/testdata/name_lookup/fail_global_duplicate.carbon index 1af7826134c7..a4c34ce26be4 100644 --- a/explorer/testdata/name_lookup/fail_global_duplicate.carbon +++ b/explorer/testdata/name_lookup/fail_global_duplicate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_use_before_declare.carbon b/explorer/testdata/name_lookup/fail_use_before_declare.carbon index 9e130cb3ac15..9dc55a34acc4 100644 --- a/explorer/testdata/name_lookup/fail_use_before_declare.carbon +++ b/explorer/testdata/name_lookup/fail_use_before_declare.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/fail_var_use_before_declaration.carbon b/explorer/testdata/name_lookup/fail_var_use_before_declaration.carbon index f73bc9132ea3..268301c78f10 100644 --- a/explorer/testdata/name_lookup/fail_var_use_before_declaration.carbon +++ b/explorer/testdata/name_lookup/fail_var_use_before_declaration.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/global_shadow.carbon b/explorer/testdata/name_lookup/global_shadow.carbon index 3866d8bc36a8..58c410ebf13b 100644 --- a/explorer/testdata/name_lookup/global_shadow.carbon +++ b/explorer/testdata/name_lookup/global_shadow.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/name_lookup/match_shadow.carbon b/explorer/testdata/name_lookup/match_shadow.carbon index 4d302bd647fd..3c7bc9239304 100644 --- a/explorer/testdata/name_lookup/match_shadow.carbon +++ b/explorer/testdata/name_lookup/match_shadow.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/extend.carbon b/explorer/testdata/named_constraint/extend.carbon index 9507e9407516..3d14be306887 100644 --- a/explorer/testdata/named_constraint/extend.carbon +++ b/explorer/testdata/named_constraint/extend.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/fail_associated_constant.carbon b/explorer/testdata/named_constraint/fail_associated_constant.carbon index 10bd559201d0..701d02c3446d 100644 --- a/explorer/testdata/named_constraint/fail_associated_constant.carbon +++ b/explorer/testdata/named_constraint/fail_associated_constant.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/fail_associated_function.carbon b/explorer/testdata/named_constraint/fail_associated_function.carbon index 4300c8696644..5b1647d86c31 100644 --- a/explorer/testdata/named_constraint/fail_associated_function.carbon +++ b/explorer/testdata/named_constraint/fail_associated_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/fail_compound_member_access.carbon b/explorer/testdata/named_constraint/fail_compound_member_access.carbon index fac9ae2dadf5..bd0409769b36 100644 --- a/explorer/testdata/named_constraint/fail_compound_member_access.carbon +++ b/explorer/testdata/named_constraint/fail_compound_member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/fail_require_member_access.carbon b/explorer/testdata/named_constraint/fail_require_member_access.carbon index 93ee327efeef..5f2e0384a5f9 100644 --- a/explorer/testdata/named_constraint/fail_require_member_access.carbon +++ b/explorer/testdata/named_constraint/fail_require_member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/impl_constraint.carbon b/explorer/testdata/named_constraint/impl_constraint.carbon index ece3ce88c41e..e175188c6c90 100644 --- a/explorer/testdata/named_constraint/impl_constraint.carbon +++ b/explorer/testdata/named_constraint/impl_constraint.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/named_constraint/require.carbon b/explorer/testdata/named_constraint/require.carbon index b284103e57be..996c89097e6a 100644 --- a/explorer/testdata/named_constraint/require.carbon +++ b/explorer/testdata/named_constraint/require.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/builtin_in_namespace.carbon b/explorer/testdata/namespace/builtin_in_namespace.carbon index 374a1ac2248f..890257231cd2 100644 --- a/explorer/testdata/namespace/builtin_in_namespace.carbon +++ b/explorer/testdata/namespace/builtin_in_namespace.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/declare.carbon b/explorer/testdata/namespace/declare.carbon index 7a511a872c73..70bba7c1a899 100644 --- a/explorer/testdata/namespace/declare.carbon +++ b/explorer/testdata/namespace/declare.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_member_namespace.carbon b/explorer/testdata/namespace/fail_member_namespace.carbon index ce51f6f0a817..0409ac2bc417 100644 --- a/explorer/testdata/namespace/fail_member_namespace.carbon +++ b/explorer/testdata/namespace/fail_member_namespace.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Foo api; diff --git a/explorer/testdata/namespace/fail_members_not_in_outer_scope.carbon b/explorer/testdata/namespace/fail_members_not_in_outer_scope.carbon index 207c1c1b53bf..ef568c811b29 100644 --- a/explorer/testdata/namespace/fail_members_not_in_outer_scope.carbon +++ b/explorer/testdata/namespace/fail_members_not_in_outer_scope.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_missing_nested.carbon b/explorer/testdata/namespace/fail_missing_nested.carbon index 4ad8f7d5a9f7..249ee197c3f1 100644 --- a/explorer/testdata/namespace/fail_missing_nested.carbon +++ b/explorer/testdata/namespace/fail_missing_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_qualifier_not_namespace.carbon b/explorer/testdata/namespace/fail_qualifier_not_namespace.carbon index 31427690b9f9..b12156486d93 100644 --- a/explorer/testdata/namespace/fail_qualifier_not_namespace.carbon +++ b/explorer/testdata/namespace/fail_qualifier_not_namespace.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_unknown_member.carbon b/explorer/testdata/namespace/fail_unknown_member.carbon index 87bc85d11d53..0affe0fa9aa2 100644 --- a/explorer/testdata/namespace/fail_unknown_member.carbon +++ b/explorer/testdata/namespace/fail_unknown_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_unknown_namespace.carbon b/explorer/testdata/namespace/fail_unknown_namespace.carbon index c554618d42b3..9849d2b48469 100644 --- a/explorer/testdata/namespace/fail_unknown_namespace.carbon +++ b/explorer/testdata/namespace/fail_unknown_namespace.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_use_as_expression.carbon b/explorer/testdata/namespace/fail_use_as_expression.carbon index f07a7bcd3207..c51518ff60d2 100644 --- a/explorer/testdata/namespace/fail_use_as_expression.carbon +++ b/explorer/testdata/namespace/fail_use_as_expression.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/fail_use_as_value.carbon b/explorer/testdata/namespace/fail_use_as_value.carbon index b5f0358192e7..e3db5b684dd4 100644 --- a/explorer/testdata/namespace/fail_use_as_value.carbon +++ b/explorer/testdata/namespace/fail_use_as_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/generic_parameter_scope.carbon b/explorer/testdata/namespace/generic_parameter_scope.carbon index 10b0417b388f..a7c6ea0fc820 100644 --- a/explorer/testdata/namespace/generic_parameter_scope.carbon +++ b/explorer/testdata/namespace/generic_parameter_scope.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/lookup_scope.carbon b/explorer/testdata/namespace/lookup_scope.carbon index acd67414f85d..3ec958c1b814 100644 --- a/explorer/testdata/namespace/lookup_scope.carbon +++ b/explorer/testdata/namespace/lookup_scope.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/namespace/members.carbon b/explorer/testdata/namespace/members.carbon index bb7b9aad5dca..bb8bb1475810 100644 --- a/explorer/testdata/namespace/members.carbon +++ b/explorer/testdata/namespace/members.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/add.carbon b/explorer/testdata/operators/add.carbon index 7f4cd860dd49..0c3c26bb533f 100644 --- a/explorer/testdata/operators/add.carbon +++ b/explorer/testdata/operators/add.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/add_builtin.carbon b/explorer/testdata/operators/add_builtin.carbon index b5586b38a099..95e9d32925fe 100644 --- a/explorer/testdata/operators/add_builtin.carbon +++ b/explorer/testdata/operators/add_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/add_with.carbon b/explorer/testdata/operators/add_with.carbon index 44eed9502569..033ecfd42538 100644 --- a/explorer/testdata/operators/add_with.carbon +++ b/explorer/testdata/operators/add_with.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/assign_builtin.carbon b/explorer/testdata/operators/assign_builtin.carbon index a8ac771c267c..3c00d549d34f 100644 --- a/explorer/testdata/operators/assign_builtin.carbon +++ b/explorer/testdata/operators/assign_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/bit_and.carbon b/explorer/testdata/operators/bit_and.carbon index 3d58cb95b87c..18f427db1de6 100644 --- a/explorer/testdata/operators/bit_and.carbon +++ b/explorer/testdata/operators/bit_and.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/bit_complement.carbon b/explorer/testdata/operators/bit_complement.carbon index e1aece7caf27..058a62f1ff18 100644 --- a/explorer/testdata/operators/bit_complement.carbon +++ b/explorer/testdata/operators/bit_complement.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/bit_or.carbon b/explorer/testdata/operators/bit_or.carbon index b56df015a5fc..0aeee676775f 100644 --- a/explorer/testdata/operators/bit_or.carbon +++ b/explorer/testdata/operators/bit_or.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/bit_xor.carbon b/explorer/testdata/operators/bit_xor.carbon index f9970fa78353..911fb92d921e 100644 --- a/explorer/testdata/operators/bit_xor.carbon +++ b/explorer/testdata/operators/bit_xor.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/bitwise.carbon b/explorer/testdata/operators/bitwise.carbon index 9f0dbf3dfcdf..8cd29f5cc024 100644 --- a/explorer/testdata/operators/bitwise.carbon +++ b/explorer/testdata/operators/bitwise.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/combine.carbon b/explorer/testdata/operators/combine.carbon index d0776298d011..af36df078077 100644 --- a/explorer/testdata/operators/combine.carbon +++ b/explorer/testdata/operators/combine.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/div.carbon b/explorer/testdata/operators/div.carbon index 6949437582c2..086adab16016 100644 --- a/explorer/testdata/operators/div.carbon +++ b/explorer/testdata/operators/div.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/div_builtin.carbon b/explorer/testdata/operators/div_builtin.carbon index ba124e99dd45..f4c355846c91 100644 --- a/explorer/testdata/operators/div_builtin.carbon +++ b/explorer/testdata/operators/div_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_combine_lhs.carbon b/explorer/testdata/operators/fail_combine_lhs.carbon index 26383ad26dda..eaada457a8b3 100644 --- a/explorer/testdata/operators/fail_combine_lhs.carbon +++ b/explorer/testdata/operators/fail_combine_lhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_combine_rhs.carbon b/explorer/testdata/operators/fail_combine_rhs.carbon index 3bb6f24e8f75..997104b32532 100644 --- a/explorer/testdata/operators/fail_combine_rhs.carbon +++ b/explorer/testdata/operators/fail_combine_rhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_div_by_zero.carbon b/explorer/testdata/operators/fail_div_by_zero.carbon index 085ce2153955..d99c606f2ecb 100644 --- a/explorer/testdata/operators/fail_div_by_zero.carbon +++ b/explorer/testdata/operators/fail_div_by_zero.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_left_shift_large_rhs.carbon b/explorer/testdata/operators/fail_left_shift_large_rhs.carbon index ac869897c87c..0e9b07081b1d 100644 --- a/explorer/testdata/operators/fail_left_shift_large_rhs.carbon +++ b/explorer/testdata/operators/fail_left_shift_large_rhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Integer overflow package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_left_shift_negative_rhs.carbon b/explorer/testdata/operators/fail_left_shift_negative_rhs.carbon index 7c17f7408e6e..fa3adab9cb97 100644 --- a/explorer/testdata/operators/fail_left_shift_negative_rhs.carbon +++ b/explorer/testdata/operators/fail_left_shift_negative_rhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Integer overflow package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_mod_by_zero.carbon b/explorer/testdata/operators/fail_mod_by_zero.carbon index 17590b9c9364..612f7082cf8c 100644 --- a/explorer/testdata/operators/fail_mod_by_zero.carbon +++ b/explorer/testdata/operators/fail_mod_by_zero.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_no_add.carbon b/explorer/testdata/operators/fail_no_add.carbon index cd69ae56895b..05c1a14737d3 100644 --- a/explorer/testdata/operators/fail_no_add.carbon +++ b/explorer/testdata/operators/fail_no_add.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_no_mul.carbon b/explorer/testdata/operators/fail_no_mul.carbon index 07bf1c3ae6ce..0e2f076115f0 100644 --- a/explorer/testdata/operators/fail_no_mul.carbon +++ b/explorer/testdata/operators/fail_no_mul.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_no_negate.carbon b/explorer/testdata/operators/fail_no_negate.carbon index bb4128a86570..ad0636846274 100644 --- a/explorer/testdata/operators/fail_no_negate.carbon +++ b/explorer/testdata/operators/fail_no_negate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_no_sub.carbon b/explorer/testdata/operators/fail_no_sub.carbon index 30af043f12e7..217553cd87d7 100644 --- a/explorer/testdata/operators/fail_no_sub.carbon +++ b/explorer/testdata/operators/fail_no_sub.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_overflow_add.carbon b/explorer/testdata/operators/fail_overflow_add.carbon index 9c41ed48b655..6a9e9f70e08d 100644 --- a/explorer/testdata/operators/fail_overflow_add.carbon +++ b/explorer/testdata/operators/fail_overflow_add.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_overflow_div.carbon b/explorer/testdata/operators/fail_overflow_div.carbon index a5c9fcdb3108..649e757e004e 100644 --- a/explorer/testdata/operators/fail_overflow_div.carbon +++ b/explorer/testdata/operators/fail_overflow_div.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_overflow_multiply.carbon b/explorer/testdata/operators/fail_overflow_multiply.carbon index 4bac78fe11bf..2acbce9835e8 100644 --- a/explorer/testdata/operators/fail_overflow_multiply.carbon +++ b/explorer/testdata/operators/fail_overflow_multiply.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_overflow_sub.carbon b/explorer/testdata/operators/fail_overflow_sub.carbon index edec1b75438f..619467e99dd2 100644 --- a/explorer/testdata/operators/fail_overflow_sub.carbon +++ b/explorer/testdata/operators/fail_overflow_sub.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_right_shift_large_rhs.carbon b/explorer/testdata/operators/fail_right_shift_large_rhs.carbon index 9bdce1d14eb9..bda99deaab4d 100644 --- a/explorer/testdata/operators/fail_right_shift_large_rhs.carbon +++ b/explorer/testdata/operators/fail_right_shift_large_rhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Integer overflow package ExplorerTest api; diff --git a/explorer/testdata/operators/fail_right_shift_negative_rhs.carbon b/explorer/testdata/operators/fail_right_shift_negative_rhs.carbon index 1d8fe7ddba40..95d81ac56861 100644 --- a/explorer/testdata/operators/fail_right_shift_negative_rhs.carbon +++ b/explorer/testdata/operators/fail_right_shift_negative_rhs.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Integer overflow package ExplorerTest api; diff --git a/explorer/testdata/operators/inc_dec.carbon b/explorer/testdata/operators/inc_dec.carbon index 584521378db1..27656b64c194 100644 --- a/explorer/testdata/operators/inc_dec.carbon +++ b/explorer/testdata/operators/inc_dec.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/left_shift.carbon b/explorer/testdata/operators/left_shift.carbon index da72b6b8a659..1f57e5333797 100644 --- a/explorer/testdata/operators/left_shift.carbon +++ b/explorer/testdata/operators/left_shift.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/mod.carbon b/explorer/testdata/operators/mod.carbon index 7a9ef28bfd5a..2ee77af82a8a 100644 --- a/explorer/testdata/operators/mod.carbon +++ b/explorer/testdata/operators/mod.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/mod_builtin.carbon b/explorer/testdata/operators/mod_builtin.carbon index 564b5b5ebb34..e2e27a1c120c 100644 --- a/explorer/testdata/operators/mod_builtin.carbon +++ b/explorer/testdata/operators/mod_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/mod_edges.carbon b/explorer/testdata/operators/mod_edges.carbon index 856beee767a0..3b90c04180af 100644 --- a/explorer/testdata/operators/mod_edges.carbon +++ b/explorer/testdata/operators/mod_edges.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/mul.carbon b/explorer/testdata/operators/mul.carbon index e924efc831d5..fc0413eae8c7 100644 --- a/explorer/testdata/operators/mul.carbon +++ b/explorer/testdata/operators/mul.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/mul_builtin.carbon b/explorer/testdata/operators/mul_builtin.carbon index 490e29d6f435..42931e215df9 100644 --- a/explorer/testdata/operators/mul_builtin.carbon +++ b/explorer/testdata/operators/mul_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/negate.carbon b/explorer/testdata/operators/negate.carbon index 83cb5a7f93c0..7d5c2d0c8964 100644 --- a/explorer/testdata/operators/negate.carbon +++ b/explorer/testdata/operators/negate.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/negate_builtin.carbon b/explorer/testdata/operators/negate_builtin.carbon index 5ee411e43ec0..3ace460b13b8 100644 --- a/explorer/testdata/operators/negate_builtin.carbon +++ b/explorer/testdata/operators/negate_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/right_shift.carbon b/explorer/testdata/operators/right_shift.carbon index 1a4d140425c3..a27991e9a288 100644 --- a/explorer/testdata/operators/right_shift.carbon +++ b/explorer/testdata/operators/right_shift.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/shift.carbon b/explorer/testdata/operators/shift.carbon index 83d7a8db27f8..602fc9c6679d 100644 --- a/explorer/testdata/operators/shift.carbon +++ b/explorer/testdata/operators/shift.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/shortcircuit_and.carbon b/explorer/testdata/operators/shortcircuit_and.carbon index 2c115211169f..ca9955078fc2 100644 --- a/explorer/testdata/operators/shortcircuit_and.carbon +++ b/explorer/testdata/operators/shortcircuit_and.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/shortcircuit_and_no_shortcircuit.carbon b/explorer/testdata/operators/shortcircuit_and_no_shortcircuit.carbon index 433a69990086..b93acf9f6370 100644 --- a/explorer/testdata/operators/shortcircuit_and_no_shortcircuit.carbon +++ b/explorer/testdata/operators/shortcircuit_and_no_shortcircuit.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/shortcircuit_or.carbon b/explorer/testdata/operators/shortcircuit_or.carbon index 99e1586a68c9..3d74dbadbc80 100644 --- a/explorer/testdata/operators/shortcircuit_or.carbon +++ b/explorer/testdata/operators/shortcircuit_or.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/shortcircuit_or_no_shortcircuit.carbon b/explorer/testdata/operators/shortcircuit_or_no_shortcircuit.carbon index 0f9a6044bae7..939e0ec3efde 100644 --- a/explorer/testdata/operators/shortcircuit_or_no_shortcircuit.carbon +++ b/explorer/testdata/operators/shortcircuit_or_no_shortcircuit.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/sub.carbon b/explorer/testdata/operators/sub.carbon index d9c294e1c54c..d8022cb18b32 100644 --- a/explorer/testdata/operators/sub.carbon +++ b/explorer/testdata/operators/sub.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/operators/sub_builtin.carbon b/explorer/testdata/operators/sub_builtin.carbon index 607532635364..f07b7c2ef03f 100644 --- a/explorer/testdata/operators/sub_builtin.carbon +++ b/explorer/testdata/operators/sub_builtin.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/optional/fail_optional_get_empty.carbon b/explorer/testdata/optional/fail_optional_get_empty.carbon index 85778a7dc24d..acf34cd454f1 100644 --- a/explorer/testdata/optional/fail_optional_get_empty.carbon +++ b/explorer/testdata/optional/fail_optional_get_empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: "Attempted to unwrap empty Optional" package ExplorerTest api; diff --git a/explorer/testdata/optional/init_optional_with_non_value.carbon b/explorer/testdata/optional/init_optional_with_non_value.carbon index c5e38c2942c6..6d8fcfc05e6d 100644 --- a/explorer/testdata/optional/init_optional_with_non_value.carbon +++ b/explorer/testdata/optional/init_optional_with_non_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/optional/init_optional_with_value.carbon b/explorer/testdata/optional/init_optional_with_value.carbon index 32f312b2a313..7f901748a515 100644 --- a/explorer/testdata/optional/init_optional_with_value.carbon +++ b/explorer/testdata/optional/init_optional_with_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/package/fail_missing.carbon b/explorer/testdata/package/fail_missing.carbon index 93194c039a67..9d25527c3e36 100644 --- a/explorer/testdata/package/fail_missing.carbon +++ b/explorer/testdata/package/fail_missing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: SYNTAX ERROR: fail_missing.carbon:[[@LINE+1]]: syntax error, unexpected FN, expecting PACKAGE fn Main() -> i32 { diff --git a/explorer/testdata/package/with_library.carbon b/explorer/testdata/package/with_library.carbon index e97321bd3fdd..d38bfb194fe5 100644 --- a/explorer/testdata/package/with_library.carbon +++ b/explorer/testdata/package/with_library.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest library "Foo" api; diff --git a/explorer/testdata/pointer/aliasing.carbon b/explorer/testdata/pointer/aliasing.carbon index 46ffa54daf89..25525f285926 100644 --- a/explorer/testdata/pointer/aliasing.carbon +++ b/explorer/testdata/pointer/aliasing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/basic.carbon b/explorer/testdata/pointer/basic.carbon index 4cce80187d1b..5e60fe6f2974 100644 --- a/explorer/testdata/pointer/basic.carbon +++ b/explorer/testdata/pointer/basic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_delete_uninit.carbon b/explorer/testdata/pointer/fail_delete_uninit.carbon index 212279ecadaa..fc537db2a25f 100644 --- a/explorer/testdata/pointer/fail_delete_uninit.carbon +++ b/explorer/testdata/pointer/fail_delete_uninit.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_intrinsic_delete_no_args.carbon b/explorer/testdata/pointer/fail_intrinsic_delete_no_args.carbon index a003a1ba96f8..17027a5cc067 100644 --- a/explorer/testdata/pointer/fail_intrinsic_delete_no_args.carbon +++ b/explorer/testdata/pointer/fail_intrinsic_delete_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_intrinsic_delete_type.carbon b/explorer/testdata/pointer/fail_intrinsic_delete_type.carbon index f97d17a3792a..65e1c70d33d2 100644 --- a/explorer/testdata/pointer/fail_intrinsic_delete_type.carbon +++ b/explorer/testdata/pointer/fail_intrinsic_delete_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_intrinsic_new_no_args.carbon b/explorer/testdata/pointer/fail_intrinsic_new_no_args.carbon index f1c348ebb732..7be7c76f43a0 100644 --- a/explorer/testdata/pointer/fail_intrinsic_new_no_args.carbon +++ b/explorer/testdata/pointer/fail_intrinsic_new_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_invalid_ptr_conversion1.carbon b/explorer/testdata/pointer/fail_invalid_ptr_conversion1.carbon index bd016a6746ea..9fefb553d2bf 100644 --- a/explorer/testdata/pointer/fail_invalid_ptr_conversion1.carbon +++ b/explorer/testdata/pointer/fail_invalid_ptr_conversion1.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_invalid_ptr_conversion2.carbon b/explorer/testdata/pointer/fail_invalid_ptr_conversion2.carbon index 924432252950..ce45ff9c0198 100644 --- a/explorer/testdata/pointer/fail_invalid_ptr_conversion2.carbon +++ b/explorer/testdata/pointer/fail_invalid_ptr_conversion2.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_rvalue_addressof.carbon b/explorer/testdata/pointer/fail_rvalue_addressof.carbon index 01cf1f27bc25..330f67923041 100644 --- a/explorer/testdata/pointer/fail_rvalue_addressof.carbon +++ b/explorer/testdata/pointer/fail_rvalue_addressof.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/fail_use_after_free.carbon b/explorer/testdata/pointer/fail_use_after_free.carbon index 0c6b28551062..08c42c349b87 100644 --- a/explorer/testdata/pointer/fail_use_after_free.carbon +++ b/explorer/testdata/pointer/fail_use_after_free.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/heap_alloc_lifetime.carbon b/explorer/testdata/pointer/heap_alloc_lifetime.carbon index 705ffdec300b..26516f827b6a 100644 --- a/explorer/testdata/pointer/heap_alloc_lifetime.carbon +++ b/explorer/testdata/pointer/heap_alloc_lifetime.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/intrinsic_new.carbon b/explorer/testdata/pointer/intrinsic_new.carbon index 1a5abe447630..2ad9a209cc2e 100644 --- a/explorer/testdata/pointer/intrinsic_new.carbon +++ b/explorer/testdata/pointer/intrinsic_new.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/new_and_delete.carbon b/explorer/testdata/pointer/new_and_delete.carbon index cf6ab123b332..efa76782e41a 100644 --- a/explorer/testdata/pointer/new_and_delete.carbon +++ b/explorer/testdata/pointer/new_and_delete.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/new_and_delete_class.carbon b/explorer/testdata/pointer/new_and_delete_class.carbon index bd25294dc0c2..a0763d51bc7c 100644 --- a/explorer/testdata/pointer/new_and_delete_class.carbon +++ b/explorer/testdata/pointer/new_and_delete_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/new_and_delete_fn.carbon b/explorer/testdata/pointer/new_and_delete_fn.carbon index 318f80f5f750..8615c2fa1102 100644 --- a/explorer/testdata/pointer/new_and_delete_fn.carbon +++ b/explorer/testdata/pointer/new_and_delete_fn.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/pointer_to_type_like.carbon b/explorer/testdata/pointer/pointer_to_type_like.carbon index 506e5bb68343..cc4889a646ae 100644 --- a/explorer/testdata/pointer/pointer_to_type_like.carbon +++ b/explorer/testdata/pointer/pointer_to_type_like.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/struct_pointer.carbon b/explorer/testdata/pointer/struct_pointer.carbon index 6148be9bbaf3..a05b73b83111 100644 --- a/explorer/testdata/pointer/struct_pointer.carbon +++ b/explorer/testdata/pointer/struct_pointer.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/pointer/tuple_pointer.carbon b/explorer/testdata/pointer/tuple_pointer.carbon index fe035378d1dd..22050966b4f9 100644 --- a/explorer/testdata/pointer/tuple_pointer.carbon +++ b/explorer/testdata/pointer/tuple_pointer.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/associated_constant.carbon b/explorer/testdata/print/associated_constant.carbon index 24499f9ef5c5..f9b0baca2c6e 100644 --- a/explorer/testdata/print/associated_constant.carbon +++ b/explorer/testdata/print/associated_constant.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package Testcase api; diff --git a/explorer/testdata/print/escaped_brace.carbon b/explorer/testdata/print/escaped_brace.carbon index fc574edd7e6b..39569fe349fa 100644 --- a/explorer/testdata/print/escaped_brace.carbon +++ b/explorer/testdata/print/escaped_brace.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/fail_call_at_compile_time.carbon b/explorer/testdata/print/fail_call_at_compile_time.carbon index 11c4399f4c1d..be5a37cb6304 100644 --- a/explorer/testdata/print/fail_call_at_compile_time.carbon +++ b/explorer/testdata/print/fail_call_at_compile_time.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_bounds0.carbon b/explorer/testdata/print/fail_index_bounds0.carbon index a332420270a7..0a00fb222a80 100644 --- a/explorer/testdata/print/fail_index_bounds0.carbon +++ b/explorer/testdata/print/fail_index_bounds0.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_bounds1.carbon b/explorer/testdata/print/fail_index_bounds1.carbon index 73dea8d9b58d..2319ddaab2b2 100644 --- a/explorer/testdata/print/fail_index_bounds1.carbon +++ b/explorer/testdata/print/fail_index_bounds1.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_empty.carbon b/explorer/testdata/print/fail_index_empty.carbon index 13be68480348..a901e299cbb8 100644 --- a/explorer/testdata/print/fail_index_empty.carbon +++ b/explorer/testdata/print/fail_index_empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_incomplete.carbon b/explorer/testdata/print/fail_index_incomplete.carbon index 4292723016e3..db2883270bc8 100644 --- a/explorer/testdata/print/fail_index_incomplete.carbon +++ b/explorer/testdata/print/fail_index_incomplete.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_limit.carbon b/explorer/testdata/print/fail_index_limit.carbon index 6081f079b395..cf7a8939d00c 100644 --- a/explorer/testdata/print/fail_index_limit.carbon +++ b/explorer/testdata/print/fail_index_limit.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_negative.carbon b/explorer/testdata/print/fail_index_negative.carbon index 97f6764b63b7..a5a5550db3b5 100644 --- a/explorer/testdata/print/fail_index_negative.carbon +++ b/explorer/testdata/print/fail_index_negative.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_index_text.carbon b/explorer/testdata/print/fail_index_text.carbon index 0bb40c11bc09..96aa06a49e1a 100644 --- a/explorer/testdata/print/fail_index_text.carbon +++ b/explorer/testdata/print/fail_index_text.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_intrinsic_int_format.carbon b/explorer/testdata/print/fail_intrinsic_int_format.carbon index 98075fbf195d..f11ac80c59ca 100644 --- a/explorer/testdata/print/fail_intrinsic_int_format.carbon +++ b/explorer/testdata/print/fail_intrinsic_int_format.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_intrinsic_no_args.carbon b/explorer/testdata/print/fail_intrinsic_no_args.carbon index 454e1ea97ed8..1ae6e2287e4d 100644 --- a/explorer/testdata/print/fail_intrinsic_no_args.carbon +++ b/explorer/testdata/print/fail_intrinsic_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_intrinsic_too_many_args.carbon b/explorer/testdata/print/fail_intrinsic_too_many_args.carbon index b974b16b930d..00b64d144ea5 100644 --- a/explorer/testdata/print/fail_intrinsic_too_many_args.carbon +++ b/explorer/testdata/print/fail_intrinsic_too_many_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_intrinsic_type.carbon b/explorer/testdata/print/fail_intrinsic_type.carbon index 3c9f415a836d..fefaddd86767 100644 --- a/explorer/testdata/print/fail_intrinsic_type.carbon +++ b/explorer/testdata/print/fail_intrinsic_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/fail_no_args.carbon b/explorer/testdata/print/fail_no_args.carbon index eae6b5adefa7..fdb89cd46fef 100644 --- a/explorer/testdata/print/fail_no_args.carbon +++ b/explorer/testdata/print/fail_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/fail_not_str.carbon b/explorer/testdata/print/fail_not_str.carbon index 1ab161bde417..c5878694dc9e 100644 --- a/explorer/testdata/print/fail_not_str.carbon +++ b/explorer/testdata/print/fail_not_str.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/fail_single_brace.carbon b/explorer/testdata/print/fail_single_brace.carbon index 296d4d1132c3..fe2549978121 100644 --- a/explorer/testdata/print/fail_single_brace.carbon +++ b/explorer/testdata/print/fail_single_brace.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest impl; diff --git a/explorer/testdata/print/fail_too_many_args.carbon b/explorer/testdata/print/fail_too_many_args.carbon index 833b2252a3a2..01f876e14e1e 100644 --- a/explorer/testdata/print/fail_too_many_args.carbon +++ b/explorer/testdata/print/fail_too_many_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/fail_type.carbon b/explorer/testdata/print/fail_type.carbon index 1944ea68fecb..e6b5b57a9183 100644 --- a/explorer/testdata/print/fail_type.carbon +++ b/explorer/testdata/print/fail_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/format_only.carbon b/explorer/testdata/print/format_only.carbon index f457227e8829..81b8758cfa0d 100644 --- a/explorer/testdata/print/format_only.carbon +++ b/explorer/testdata/print/format_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/i32.carbon b/explorer/testdata/print/i32.carbon index e63671489282..b1c147475376 100644 --- a/explorer/testdata/print/i32.carbon +++ b/explorer/testdata/print/i32.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/print/long_index.carbon b/explorer/testdata/print/long_index.carbon index b629207e8c76..fe6d033299d4 100644 --- a/explorer/testdata/print/long_index.carbon +++ b/explorer/testdata/print/long_index.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/random/fail_empty_range.carbon b/explorer/testdata/random/fail_empty_range.carbon index ed54d200c287..49940c111424 100644 --- a/explorer/testdata/random/fail_empty_range.carbon +++ b/explorer/testdata/random/fail_empty_range.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Rand inputs must be ordered for a non-empty range: 0 must be less than 0 package ExplorerTest api; diff --git a/explorer/testdata/random/fail_intrinsic_no_args.carbon b/explorer/testdata/random/fail_intrinsic_no_args.carbon index 4da283e6479a..2b2ce038586c 100644 --- a/explorer/testdata/random/fail_intrinsic_no_args.carbon +++ b/explorer/testdata/random/fail_intrinsic_no_args.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/random/fail_intrinsic_type0.carbon b/explorer/testdata/random/fail_intrinsic_type0.carbon index 676dda607b38..6dc0836e7f4b 100644 --- a/explorer/testdata/random/fail_intrinsic_type0.carbon +++ b/explorer/testdata/random/fail_intrinsic_type0.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/random/fail_intrinsic_type1.carbon b/explorer/testdata/random/fail_intrinsic_type1.carbon index 41314b79ad4f..cd604eed965a 100644 --- a/explorer/testdata/random/fail_intrinsic_type1.carbon +++ b/explorer/testdata/random/fail_intrinsic_type1.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/random/fail_reverse_range.carbon b/explorer/testdata/random/fail_reverse_range.carbon index addae9335c55..3fd2fe053f9d 100644 --- a/explorer/testdata/random/fail_reverse_range.carbon +++ b/explorer/testdata/random/fail_reverse_range.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDERR: RUNTIME ERROR: prelude.carbon:{{\d+}}: Rand inputs must be ordered for a non-empty range: 1 must be less than -1 package ExplorerTest api; diff --git a/explorer/testdata/random/max_range.carbon b/explorer/testdata/random/max_range.carbon index 30c0fc990fb2..d6ca0f024ca9 100644 --- a/explorer/testdata/random/max_range.carbon +++ b/explorer/testdata/random/max_range.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/random/random.carbon b/explorer/testdata/random/random.carbon index 55bdbea73dad..9bcff31261ec 100644 --- a/explorer/testdata/random/random.carbon +++ b/explorer/testdata/random/random.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/convert_return_assoc.carbon b/explorer/testdata/return/convert_return_assoc.carbon index 917038690109..6c26dc2b38d5 100644 --- a/explorer/testdata/return/convert_return_assoc.carbon +++ b/explorer/testdata/return/convert_return_assoc.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/convert_return_value.carbon b/explorer/testdata/return/convert_return_value.carbon index 6ca9ec4c0e9a..c537deb93a26 100644 --- a/explorer/testdata/return/convert_return_value.carbon +++ b/explorer/testdata/return/convert_return_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/explicit_empty.carbon b/explorer/testdata/return/explicit_empty.carbon index b414b65fb98d..f11a23fb4c36 100644 --- a/explorer/testdata/return/explicit_empty.carbon +++ b/explorer/testdata/return/explicit_empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/fail_explicit_with_no_return.carbon b/explorer/testdata/return/fail_explicit_with_no_return.carbon index 4c83d98b6729..9586ab695fc0 100644 --- a/explorer/testdata/return/fail_explicit_with_no_return.carbon +++ b/explorer/testdata/return/fail_explicit_with_no_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/fail_explicit_with_plain_return.carbon b/explorer/testdata/return/fail_explicit_with_plain_return.carbon index 72e58d0acbcc..c1a82c0fb415 100644 --- a/explorer/testdata/return/fail_explicit_with_plain_return.carbon +++ b/explorer/testdata/return/fail_explicit_with_plain_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/fail_implicit_with_explicit_return.carbon b/explorer/testdata/return/fail_implicit_with_explicit_return.carbon index 9557be4ee66a..dc5c74c2f258 100644 --- a/explorer/testdata/return/fail_implicit_with_explicit_return.carbon +++ b/explorer/testdata/return/fail_implicit_with_explicit_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/implicit_with_no_return.carbon b/explorer/testdata/return/implicit_with_no_return.carbon index 13c409dcfba2..3e96b74b6d19 100644 --- a/explorer/testdata/return/implicit_with_no_return.carbon +++ b/explorer/testdata/return/implicit_with_no_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/return/implicit_with_plain_return.carbon b/explorer/testdata/return/implicit_with_plain_return.carbon index 5a4122e64c9e..064377d29c3d 100644 --- a/explorer/testdata/return/implicit_with_plain_return.carbon +++ b/explorer/testdata/return/implicit_with_plain_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/basic.carbon b/explorer/testdata/string/basic.carbon index b360b104c7d9..5930bc4f26d7 100644 --- a/explorer/testdata/string/basic.carbon +++ b/explorer/testdata/string/basic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/block.carbon b/explorer/testdata/string/block.carbon index a37a2f54d03a..c5dae6c4bbc3 100644 --- a/explorer/testdata/string/block.carbon +++ b/explorer/testdata/string/block.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/block_escaped_triple_quotes.carbon b/explorer/testdata/string/block_escaped_triple_quotes.carbon index d9faaefaa3a1..951639d907b5 100644 --- a/explorer/testdata/string/block_escaped_triple_quotes.carbon +++ b/explorer/testdata/string/block_escaped_triple_quotes.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/block_file_type_indicator.carbon b/explorer/testdata/string/block_file_type_indicator.carbon index eac149ff4488..162247e2f789 100644 --- a/explorer/testdata/string/block_file_type_indicator.carbon +++ b/explorer/testdata/string/block_file_type_indicator.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_block_quotes_not_on_own_line.carbon b/explorer/testdata/string/fail_block_quotes_not_on_own_line.carbon index ce0ba783896e..92c308a8c0d8 100644 --- a/explorer/testdata/string/fail_block_quotes_not_on_own_line.carbon +++ b/explorer/testdata/string/fail_block_quotes_not_on_own_line.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_hex_lower.carbon b/explorer/testdata/string/fail_hex_lower.carbon index b2999c35ff81..9612e7a5f056 100644 --- a/explorer/testdata/string/fail_hex_lower.carbon +++ b/explorer/testdata/string/fail_hex_lower.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_hex_truncated.carbon b/explorer/testdata/string/fail_hex_truncated.carbon index e514f33b8761..90f25cd2ff10 100644 --- a/explorer/testdata/string/fail_hex_truncated.carbon +++ b/explorer/testdata/string/fail_hex_truncated.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_invalid_escape.carbon b/explorer/testdata/string/fail_invalid_escape.carbon index 92779c95c32a..eb89ddc6df9c 100644 --- a/explorer/testdata/string/fail_invalid_escape.carbon +++ b/explorer/testdata/string/fail_invalid_escape.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_newline.carbon b/explorer/testdata/string/fail_newline.carbon index eee03b2060b2..b240a0d6c20c 100644 --- a/explorer/testdata/string/fail_newline.carbon +++ b/explorer/testdata/string/fail_newline.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_octal.carbon b/explorer/testdata/string/fail_octal.carbon index 92caffe5e46a..171e1464f201 100644 --- a/explorer/testdata/string/fail_octal.carbon +++ b/explorer/testdata/string/fail_octal.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_raw_block_more_hash_tags_on_left.carbon b/explorer/testdata/string/fail_raw_block_more_hash_tags_on_left.carbon index 6135a7d337b6..d83d4741850a 100644 --- a/explorer/testdata/string/fail_raw_block_more_hash_tags_on_left.carbon +++ b/explorer/testdata/string/fail_raw_block_more_hash_tags_on_left.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_raw_block_more_hash_tags_on_right.carbon b/explorer/testdata/string/fail_raw_block_more_hash_tags_on_right.carbon index b51098000623..142418e53276 100644 --- a/explorer/testdata/string/fail_raw_block_more_hash_tags_on_right.carbon +++ b/explorer/testdata/string/fail_raw_block_more_hash_tags_on_right.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_raw_block_quotes_not_on_own_line.carbon b/explorer/testdata/string/fail_raw_block_quotes_not_on_own_line.carbon index 23dbe9af936a..dd889f0bd6dd 100644 --- a/explorer/testdata/string/fail_raw_block_quotes_not_on_own_line.carbon +++ b/explorer/testdata/string/fail_raw_block_quotes_not_on_own_line.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_raw_block_single_line.carbon b/explorer/testdata/string/fail_raw_block_single_line.carbon index f8b6c2d0248b..578750e93713 100644 --- a/explorer/testdata/string/fail_raw_block_single_line.carbon +++ b/explorer/testdata/string/fail_raw_block_single_line.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_raw_more_hash_tags_on_left.carbon b/explorer/testdata/string/fail_raw_more_hash_tags_on_left.carbon index 1ee9af4849de..442b1442c901 100644 --- a/explorer/testdata/string/fail_raw_more_hash_tags_on_left.carbon +++ b/explorer/testdata/string/fail_raw_more_hash_tags_on_left.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_raw_more_hash_tags_on_right.carbon b/explorer/testdata/string/fail_raw_more_hash_tags_on_right.carbon index 60c3219664ec..2e458b529d2a 100644 --- a/explorer/testdata/string/fail_raw_more_hash_tags_on_right.carbon +++ b/explorer/testdata/string/fail_raw_more_hash_tags_on_right.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/fail_tab.carbon b/explorer/testdata/string/fail_tab.carbon index 87b7f8b0381b..62034cc694b7 100644 --- a/explorer/testdata/string/fail_tab.carbon +++ b/explorer/testdata/string/fail_tab.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/hex.carbon b/explorer/testdata/string/hex.carbon index bebf5549716f..0c0ed475db7e 100644 --- a/explorer/testdata/string/hex.carbon +++ b/explorer/testdata/string/hex.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/newline.carbon b/explorer/testdata/string/newline.carbon index 28920e10c8e9..4320921e37cc 100644 --- a/explorer/testdata/string/newline.carbon +++ b/explorer/testdata/string/newline.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/raw_basic.carbon b/explorer/testdata/string/raw_basic.carbon index 5451e7a46d5a..38b613138b86 100644 --- a/explorer/testdata/string/raw_basic.carbon +++ b/explorer/testdata/string/raw_basic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/raw_basic_multi_hashtag.carbon b/explorer/testdata/string/raw_basic_multi_hashtag.carbon index cb462af87764..035a7d2dc454 100644 --- a/explorer/testdata/string/raw_basic_multi_hashtag.carbon +++ b/explorer/testdata/string/raw_basic_multi_hashtag.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/raw_block.carbon b/explorer/testdata/string/raw_block.carbon index fff925bfe14f..c58254ea4326 100644 --- a/explorer/testdata/string/raw_block.carbon +++ b/explorer/testdata/string/raw_block.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/raw_block_escaped_back_slash.carbon b/explorer/testdata/string/raw_block_escaped_back_slash.carbon index ff9c09963c53..8ac9f81ca0da 100644 --- a/explorer/testdata/string/raw_block_escaped_back_slash.carbon +++ b/explorer/testdata/string/raw_block_escaped_back_slash.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/raw_block_escaped_triple_quotes.carbon b/explorer/testdata/string/raw_block_escaped_triple_quotes.carbon index e629fdc3f872..b13ebffb509c 100644 --- a/explorer/testdata/string/raw_block_escaped_triple_quotes.carbon +++ b/explorer/testdata/string/raw_block_escaped_triple_quotes.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/raw_nesting.carbon b/explorer/testdata/string/raw_nesting.carbon index 404d2b6987d5..ba4b083b5b0e 100644 --- a/explorer/testdata/string/raw_nesting.carbon +++ b/explorer/testdata/string/raw_nesting.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/string/unicode.carbon b/explorer/testdata/string/unicode.carbon index eccc5e148f0f..a25031253203 100644 --- a/explorer/testdata/string/unicode.carbon +++ b/explorer/testdata/string/unicode.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/assign.carbon b/explorer/testdata/struct/assign.carbon index 480f5aafd818..8ad64480568b 100644 --- a/explorer/testdata/struct/assign.carbon +++ b/explorer/testdata/struct/assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/assign_member.carbon b/explorer/testdata/struct/assign_member.carbon index 63590cdd0bb7..e5ae464a418d 100644 --- a/explorer/testdata/struct/assign_member.carbon +++ b/explorer/testdata/struct/assign_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/conversion.carbon b/explorer/testdata/struct/conversion.carbon index a135717edf59..b4252aa5e727 100644 --- a/explorer/testdata/struct/conversion.carbon +++ b/explorer/testdata/struct/conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/empty.carbon b/explorer/testdata/struct/empty.carbon index 48e219eb1f9f..70e8529fc2c6 100644 --- a/explorer/testdata/struct/empty.carbon +++ b/explorer/testdata/struct/empty.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/ending_comma.carbon b/explorer/testdata/struct/ending_comma.carbon index 4900df9de078..8294cd1e1944 100644 --- a/explorer/testdata/struct/ending_comma.carbon +++ b/explorer/testdata/struct/ending_comma.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/equality.carbon b/explorer/testdata/struct/equality.carbon index 99e381efa459..ddc7babe1317 100644 --- a/explorer/testdata/struct/equality.carbon +++ b/explorer/testdata/struct/equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/equality_false.carbon b/explorer/testdata/struct/equality_false.carbon index de4bfa060dd5..9094704321fa 100644 --- a/explorer/testdata/struct/equality_false.carbon +++ b/explorer/testdata/struct/equality_false.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/fail_assign_different_types.carbon b/explorer/testdata/struct/fail_assign_different_types.carbon index 3d2afd618691..b53b865808ad 100644 --- a/explorer/testdata/struct/fail_assign_different_types.carbon +++ b/explorer/testdata/struct/fail_assign_different_types.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/fail_equality_type.carbon b/explorer/testdata/struct/fail_equality_type.carbon index 8e5514e31611..4a34ef98789c 100644 --- a/explorer/testdata/struct/fail_equality_type.carbon +++ b/explorer/testdata/struct/fail_equality_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/fail_field_access_mismatch.carbon b/explorer/testdata/struct/fail_field_access_mismatch.carbon index 7be933254ee3..fe1fb82a38f9 100644 --- a/explorer/testdata/struct/fail_field_access_mismatch.carbon +++ b/explorer/testdata/struct/fail_field_access_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/fail_struct_literal_duplicate_member.carbon b/explorer/testdata/struct/fail_struct_literal_duplicate_member.carbon index 8d2b4889bdd7..3b3f3d8085b5 100644 --- a/explorer/testdata/struct/fail_struct_literal_duplicate_member.carbon +++ b/explorer/testdata/struct/fail_struct_literal_duplicate_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/fail_struct_type_literal_duplicate_member.carbon b/explorer/testdata/struct/fail_struct_type_literal_duplicate_member.carbon index 9aeeb35cc85a..ff4ae3a5f26d 100644 --- a/explorer/testdata/struct/fail_struct_type_literal_duplicate_member.carbon +++ b/explorer/testdata/struct/fail_struct_type_literal_duplicate_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/field_convertible_to_type.carbon b/explorer/testdata/struct/field_convertible_to_type.carbon index 88c9918abccc..a250373f8c7a 100644 --- a/explorer/testdata/struct/field_convertible_to_type.carbon +++ b/explorer/testdata/struct/field_convertible_to_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/name_order.carbon b/explorer/testdata/struct/name_order.carbon index cff330dee051..93952134a260 100644 --- a/explorer/testdata/struct/name_order.carbon +++ b/explorer/testdata/struct/name_order.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/temp.carbon b/explorer/testdata/struct/temp.carbon index b0571e051d02..d61981ed7fa4 100644 --- a/explorer/testdata/struct/temp.carbon +++ b/explorer/testdata/struct/temp.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/struct/var.carbon b/explorer/testdata/struct/var.carbon index ec1227d5790f..700cef77581d 100644 --- a/explorer/testdata/struct/var.carbon +++ b/explorer/testdata/struct/var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/template/fail_name_lookup.carbon b/explorer/testdata/template/fail_name_lookup.carbon index 4aa5e88eb820..15c201a868b6 100644 --- a/explorer/testdata/template/fail_name_lookup.carbon +++ b/explorer/testdata/template/fail_name_lookup.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/template/fail_no_member.carbon b/explorer/testdata/template/fail_no_member.carbon index 45a45711100f..7e62fc3d614e 100644 --- a/explorer/testdata/template/fail_no_member.carbon +++ b/explorer/testdata/template/fail_no_member.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/template/instantiate_from_generic.carbon b/explorer/testdata/template/instantiate_from_generic.carbon index 1c943476085e..871fc2636a86 100644 --- a/explorer/testdata/template/instantiate_from_generic.carbon +++ b/explorer/testdata/template/instantiate_from_generic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/template/instantiations_are_cached.carbon b/explorer/testdata/template/instantiations_are_cached.carbon index f485d3f0648c..b983a144b214 100644 --- a/explorer/testdata/template/instantiations_are_cached.carbon +++ b/explorer/testdata/template/instantiations_are_cached.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/template/member_access.carbon b/explorer/testdata/template/member_access.carbon index 8048eec38058..e8774752643c 100644 --- a/explorer/testdata/template/member_access.carbon +++ b/explorer/testdata/template/member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/template/name_lookup.carbon b/explorer/testdata/template/name_lookup.carbon index d712fac54f1b..a8002c7578ad 100644 --- a/explorer/testdata/template/name_lookup.carbon +++ b/explorer/testdata/template/name_lookup.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/trace/context_main.carbon b/explorer/testdata/trace/context_main.carbon index 8cee4611f0f7..0364b5d10d1b 100644 --- a/explorer/testdata/trace/context_main.carbon +++ b/explorer/testdata/trace/context_main.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=all --trace_file_context=main %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * source program * * * * * * * * * * // CHECK:STDOUT: -------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_all.carbon b/explorer/testdata/trace/phase_all.carbon index 624594d1c943..93ac0edff488 100644 --- a/explorer/testdata/trace/phase_all.carbon +++ b/explorer/testdata/trace/phase_all.carbon @@ -20,7 +20,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=all %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * source program * * * * * * * * * * // CHECK:STDOUT: -------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_control_flow_resolution.carbon b/explorer/testdata/trace/phase_control_flow_resolution.carbon index 555d17b479da..6c9ed140ad5d 100644 --- a/explorer/testdata/trace/phase_control_flow_resolution.carbon +++ b/explorer/testdata/trace/phase_control_flow_resolution.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=control_flow_resolution %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * resolving control flow * * * * * * * * * * // CHECK:STDOUT: ---------------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_declarations.carbon b/explorer/testdata/trace/phase_declarations.carbon index 6bb8103d8966..2c170c8c8feb 100644 --- a/explorer/testdata/trace/phase_declarations.carbon +++ b/explorer/testdata/trace/phase_declarations.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=declarations %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * printing declarations * * * * * * * * * * // CHECK:STDOUT: --------------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_execution.carbon b/explorer/testdata/trace/phase_execution.carbon index d52542d1b95d..9cb3710f9603 100644 --- a/explorer/testdata/trace/phase_execution.carbon +++ b/explorer/testdata/trace/phase_execution.carbon @@ -14,7 +14,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=execution %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * starting execution * * * * * * * * * * // CHECK:STDOUT: ------------------------------------------------------------ diff --git a/explorer/testdata/trace/phase_name_resolution.carbon b/explorer/testdata/trace/phase_name_resolution.carbon index 1698ccd8c190..b0329dbf0d01 100644 --- a/explorer/testdata/trace/phase_name_resolution.carbon +++ b/explorer/testdata/trace/phase_name_resolution.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=name_resolution %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * resolving names * * * * * * * * * * // CHECK:STDOUT: --------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_source_program.carbon b/explorer/testdata/trace/phase_source_program.carbon index c91498b3a012..191044ff8101 100644 --- a/explorer/testdata/trace/phase_source_program.carbon +++ b/explorer/testdata/trace/phase_source_program.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=source_program %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * source program * * * * * * * * * * // CHECK:STDOUT: -------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_timing.carbon b/explorer/testdata/trace/phase_timing.carbon index 18a614a6759d..ca1ecc26a00f 100644 --- a/explorer/testdata/trace/phase_timing.carbon +++ b/explorer/testdata/trace/phase_timing.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=timing %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * printing timing * * * * * * * * * * // CHECK:STDOUT: --------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_type_checking.carbon b/explorer/testdata/trace/phase_type_checking.carbon index c0f91a7399e6..d0b7cf90c6ed 100644 --- a/explorer/testdata/trace/phase_type_checking.carbon +++ b/explorer/testdata/trace/phase_type_checking.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=type_checking %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * type checking * * * * * * * * * * // CHECK:STDOUT: ------------------------------------------------------- diff --git a/explorer/testdata/trace/phase_unformed_variables_resolution.carbon b/explorer/testdata/trace/phase_unformed_variables_resolution.carbon index d47c7c6c57b8..5f14c42e1a75 100644 --- a/explorer/testdata/trace/phase_unformed_variables_resolution.carbon +++ b/explorer/testdata/trace/phase_unformed_variables_resolution.carbon @@ -13,7 +13,7 @@ fn Main() -> i32 { // Place checks after code so that line numbers are stable, reducing merge // conflicts. // ARGS: --trace_file=- --trace_phase=unformed_variables_resolution %s -// AUTOUPDATE +// NOAUTOUPDATE // CHECK:STDOUT: * * * * * * * * * * resolving unformed variables * * * * * * * * * * // CHECK:STDOUT: ---------------------------------------------------------------------- diff --git a/explorer/testdata/tuple/convert.carbon b/explorer/testdata/tuple/convert.carbon index 6f2987e1fa00..d0e5324d7796 100644 --- a/explorer/testdata/tuple/convert.carbon +++ b/explorer/testdata/tuple/convert.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/ending_comma.carbon b/explorer/testdata/tuple/ending_comma.carbon index d0ee5879eb3a..7b2ba14f4713 100644 --- a/explorer/testdata/tuple/ending_comma.carbon +++ b/explorer/testdata/tuple/ending_comma.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/equality.carbon b/explorer/testdata/tuple/equality.carbon index bb5edaede53e..13038d8f9afb 100644 --- a/explorer/testdata/tuple/equality.carbon +++ b/explorer/testdata/tuple/equality.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/equality_false.carbon b/explorer/testdata/tuple/equality_false.carbon index 84b680359c37..c60eadf41a6c 100644 --- a/explorer/testdata/tuple/equality_false.carbon +++ b/explorer/testdata/tuple/equality_false.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_equality_type.carbon b/explorer/testdata/tuple/fail_equality_type.carbon index f218bd04a52a..36ab11be247e 100644 --- a/explorer/testdata/tuple/fail_equality_type.carbon +++ b/explorer/testdata/tuple/fail_equality_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_implicit_convert_with_as.carbon b/explorer/testdata/tuple/fail_implicit_convert_with_as.carbon index 423abc77d999..12e7ae5ef842 100644 --- a/explorer/testdata/tuple/fail_implicit_convert_with_as.carbon +++ b/explorer/testdata/tuple/fail_implicit_convert_with_as.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_index.carbon b/explorer/testdata/tuple/fail_index.carbon index 97724e7acf6c..4bfd550a8db8 100644 --- a/explorer/testdata/tuple/fail_index.carbon +++ b/explorer/testdata/tuple/fail_index.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_index_var.carbon b/explorer/testdata/tuple/fail_index_var.carbon index 48bdd79c8b5e..e954ac0ea145 100644 --- a/explorer/testdata/tuple/fail_index_var.carbon +++ b/explorer/testdata/tuple/fail_index_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_length_mismatch_with_auto.carbon b/explorer/testdata/tuple/fail_length_mismatch_with_auto.carbon index e85d200c0182..525566a9381d 100644 --- a/explorer/testdata/tuple/fail_length_mismatch_with_auto.carbon +++ b/explorer/testdata/tuple/fail_length_mismatch_with_auto.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_nontype_tuple_as_type.carbon b/explorer/testdata/tuple/fail_nontype_tuple_as_type.carbon index 9816b7c8dc4c..106adbbf5b3c 100644 --- a/explorer/testdata/tuple/fail_nontype_tuple_as_type.carbon +++ b/explorer/testdata/tuple/fail_nontype_tuple_as_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_to_array.carbon b/explorer/testdata/tuple/fail_to_array.carbon index 42ad4f5b680b..832ed2439bef 100644 --- a/explorer/testdata/tuple/fail_to_array.carbon +++ b/explorer/testdata/tuple/fail_to_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_type_tuple_as_type.carbon b/explorer/testdata/tuple/fail_type_tuple_as_type.carbon index a5ea8a5f3962..3568cde90b08 100644 --- a/explorer/testdata/tuple/fail_type_tuple_as_type.carbon +++ b/explorer/testdata/tuple/fail_type_tuple_as_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/fail_unexpected_tuple.carbon b/explorer/testdata/tuple/fail_unexpected_tuple.carbon index 4f52cd2d48b9..5bc56429da5a 100644 --- a/explorer/testdata/tuple/fail_unexpected_tuple.carbon +++ b/explorer/testdata/tuple/fail_unexpected_tuple.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/index.carbon b/explorer/testdata/tuple/index.carbon index dff557321d0a..07e56140c3c3 100644 --- a/explorer/testdata/tuple/index.carbon +++ b/explorer/testdata/tuple/index.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/indirect_to_type.carbon b/explorer/testdata/tuple/indirect_to_type.carbon index 0499f57ea2ae..290ecd4fcd4d 100644 --- a/explorer/testdata/tuple/indirect_to_type.carbon +++ b/explorer/testdata/tuple/indirect_to_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/match.carbon b/explorer/testdata/tuple/match.carbon index 21513e098b8d..f34bde53377c 100644 --- a/explorer/testdata/tuple/match.carbon +++ b/explorer/testdata/tuple/match.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/match_nested.carbon b/explorer/testdata/tuple/match_nested.carbon index 38007b780e76..61821a691eb6 100644 --- a/explorer/testdata/tuple/match_nested.carbon +++ b/explorer/testdata/tuple/match_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/no_ending_comma.carbon b/explorer/testdata/tuple/no_ending_comma.carbon index ba8956f75e3b..758a7fddc49f 100644 --- a/explorer/testdata/tuple/no_ending_comma.carbon +++ b/explorer/testdata/tuple/no_ending_comma.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/to_array.carbon b/explorer/testdata/tuple/to_array.carbon index fa16e2a9b865..aa936d795507 100644 --- a/explorer/testdata/tuple/to_array.carbon +++ b/explorer/testdata/tuple/to_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/tuple/to_type.carbon b/explorer/testdata/tuple/to_type.carbon index 11998396cada..8ff3c01bfc0f 100644 --- a/explorer/testdata/tuple/to_type.carbon +++ b/explorer/testdata/tuple/to_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/control_flow_defer_to_dynamic.carbon b/explorer/testdata/unformed/control_flow_defer_to_dynamic.carbon index 7d91df84ad98..66f377fc8242 100644 --- a/explorer/testdata/unformed/control_flow_defer_to_dynamic.carbon +++ b/explorer/testdata/unformed/control_flow_defer_to_dynamic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/destroy_formed_only.carbon b/explorer/testdata/unformed/destroy_formed_only.carbon index 383fb3d29d40..9e48c2cf1cfb 100644 --- a/explorer/testdata/unformed/destroy_formed_only.carbon +++ b/explorer/testdata/unformed/destroy_formed_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/dynamic/fail_global.carbon b/explorer/testdata/unformed/dynamic/fail_global.carbon index 50d5d3a51b25..78b7c6bc1fcf 100644 --- a/explorer/testdata/unformed/dynamic/fail_global.carbon +++ b/explorer/testdata/unformed/dynamic/fail_global.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/dynamic/fail_param.carbon b/explorer/testdata/unformed/dynamic/fail_param.carbon index b6b508dffa25..3e019575f73e 100644 --- a/explorer/testdata/unformed/dynamic/fail_param.carbon +++ b/explorer/testdata/unformed/dynamic/fail_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/dynamic/fail_pattern_declare.carbon b/explorer/testdata/unformed/dynamic/fail_pattern_declare.carbon index 3b4e23f0f5df..7d90ef67f990 100644 --- a/explorer/testdata/unformed/dynamic/fail_pattern_declare.carbon +++ b/explorer/testdata/unformed/dynamic/fail_pattern_declare.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/dynamic/fail_return.carbon b/explorer/testdata/unformed/dynamic/fail_return.carbon index bf85bb7f0538..34f45bc0d200 100644 --- a/explorer/testdata/unformed/dynamic/fail_return.carbon +++ b/explorer/testdata/unformed/dynamic/fail_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/dynamic/fail_returned_var.carbon b/explorer/testdata/unformed/dynamic/fail_returned_var.carbon index 788ce308bd30..6d702b109ad5 100644 --- a/explorer/testdata/unformed/dynamic/fail_returned_var.carbon +++ b/explorer/testdata/unformed/dynamic/fail_returned_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/dynamic/fail_rhs_assign.carbon b/explorer/testdata/unformed/dynamic/fail_rhs_assign.carbon index 87a16e6e0962..95f19f37a7cc 100644 --- a/explorer/testdata/unformed/dynamic/fail_rhs_assign.carbon +++ b/explorer/testdata/unformed/dynamic/fail_rhs_assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_array.carbon b/explorer/testdata/unformed/fail_array.carbon index f0efb8b74d9d..6715d43667d0 100644 --- a/explorer/testdata/unformed/fail_array.carbon +++ b/explorer/testdata/unformed/fail_array.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_array_dynamic.carbon b/explorer/testdata/unformed/fail_array_dynamic.carbon index d12bd732b88f..36f93998bc80 100644 --- a/explorer/testdata/unformed/fail_array_dynamic.carbon +++ b/explorer/testdata/unformed/fail_array_dynamic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_base_access.carbon b/explorer/testdata/unformed/fail_base_access.carbon index abd6a2d8fed0..588635a9cf76 100644 --- a/explorer/testdata/unformed/fail_base_access.carbon +++ b/explorer/testdata/unformed/fail_base_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_compound_member_access.carbon b/explorer/testdata/unformed/fail_compound_member_access.carbon index 4e6cc123f2e5..1e695606f546 100644 --- a/explorer/testdata/unformed/fail_compound_member_access.carbon +++ b/explorer/testdata/unformed/fail_compound_member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_control_flow_defer_to_dynamic.carbon b/explorer/testdata/unformed/fail_control_flow_defer_to_dynamic.carbon index 7f0491e0e00f..205a1685ae8b 100644 --- a/explorer/testdata/unformed/fail_control_flow_defer_to_dynamic.carbon +++ b/explorer/testdata/unformed/fail_control_flow_defer_to_dynamic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_if_cond.carbon b/explorer/testdata/unformed/fail_if_cond.carbon index 07d735cbeb78..82245fc3f798 100644 --- a/explorer/testdata/unformed/fail_if_cond.carbon +++ b/explorer/testdata/unformed/fail_if_cond.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_if_else.carbon b/explorer/testdata/unformed/fail_if_else.carbon index b3f7e4639375..8f9c73d0bebd 100644 --- a/explorer/testdata/unformed/fail_if_else.carbon +++ b/explorer/testdata/unformed/fail_if_else.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_if_then.carbon b/explorer/testdata/unformed/fail_if_then.carbon index 539a2a74864f..a274b5d2e902 100644 --- a/explorer/testdata/unformed/fail_if_then.carbon +++ b/explorer/testdata/unformed/fail_if_then.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_in_class.carbon b/explorer/testdata/unformed/fail_in_class.carbon index 642c5f4f98b2..6fdb3101016d 100644 --- a/explorer/testdata/unformed/fail_in_class.carbon +++ b/explorer/testdata/unformed/fail_in_class.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_indirect_member_access.carbon b/explorer/testdata/unformed/fail_indirect_member_access.carbon index b7b57454bab6..4df15420d79e 100644 --- a/explorer/testdata/unformed/fail_indirect_member_access.carbon +++ b/explorer/testdata/unformed/fail_indirect_member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/fail_intrinsic.carbon b/explorer/testdata/unformed/fail_intrinsic.carbon index 52ef6cfc6b7a..318762cd5374 100644 --- a/explorer/testdata/unformed/fail_intrinsic.carbon +++ b/explorer/testdata/unformed/fail_intrinsic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/global_assign_before_use.carbon b/explorer/testdata/unformed/global_assign_before_use.carbon index fabdf2c9bc17..144d22b8200f 100644 --- a/explorer/testdata/unformed/global_assign_before_use.carbon +++ b/explorer/testdata/unformed/global_assign_before_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/global_escape.carbon b/explorer/testdata/unformed/global_escape.carbon index 93f287bd4593..70b5e0aabd9c 100644 --- a/explorer/testdata/unformed/global_escape.carbon +++ b/explorer/testdata/unformed/global_escape.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/global_unformed_without_use.carbon b/explorer/testdata/unformed/global_unformed_without_use.carbon index 65686ec2802b..26a0f634f5c7 100644 --- a/explorer/testdata/unformed/global_unformed_without_use.carbon +++ b/explorer/testdata/unformed/global_unformed_without_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/local_assign_before_use.carbon b/explorer/testdata/unformed/local_assign_before_use.carbon index 320c532a2249..d42e2ca35d1b 100644 --- a/explorer/testdata/unformed/local_assign_before_use.carbon +++ b/explorer/testdata/unformed/local_assign_before_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/local_escape.carbon b/explorer/testdata/unformed/local_escape.carbon index eebe053aa101..f60b2873602f 100644 --- a/explorer/testdata/unformed/local_escape.carbon +++ b/explorer/testdata/unformed/local_escape.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/local_unformed_without_use.carbon b/explorer/testdata/unformed/local_unformed_without_use.carbon index 4734ca6e0b44..afaf1ef4313c 100644 --- a/explorer/testdata/unformed/local_unformed_without_use.carbon +++ b/explorer/testdata/unformed/local_unformed_without_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/pattern_declare.carbon b/explorer/testdata/unformed/pattern_declare.carbon index 05252fb1a8eb..1a2fb3c8eec4 100644 --- a/explorer/testdata/unformed/pattern_declare.carbon +++ b/explorer/testdata/unformed/pattern_declare.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/returned_var_assign_before_use.carbon b/explorer/testdata/unformed/returned_var_assign_before_use.carbon index a637ec30599e..48f7e14d6ef2 100644 --- a/explorer/testdata/unformed/returned_var_assign_before_use.carbon +++ b/explorer/testdata/unformed/returned_var_assign_before_use.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_compound_assign.carbon b/explorer/testdata/unformed/static/fail_compound_assign.carbon index e125ccb7cf43..ffbd6a4ac050 100644 --- a/explorer/testdata/unformed/static/fail_compound_assign.carbon +++ b/explorer/testdata/unformed/static/fail_compound_assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_field_value.carbon b/explorer/testdata/unformed/static/fail_field_value.carbon index 60a2677ef4b1..243a18efeb86 100644 --- a/explorer/testdata/unformed/static/fail_field_value.carbon +++ b/explorer/testdata/unformed/static/fail_field_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_if_cond.carbon b/explorer/testdata/unformed/static/fail_if_cond.carbon index e2df26c2ec43..65d3dc94d236 100644 --- a/explorer/testdata/unformed/static/fail_if_cond.carbon +++ b/explorer/testdata/unformed/static/fail_if_cond.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_if_else.carbon b/explorer/testdata/unformed/static/fail_if_else.carbon index 6d53b9f5cbb8..c86fd0e8b45d 100644 --- a/explorer/testdata/unformed/static/fail_if_else.carbon +++ b/explorer/testdata/unformed/static/fail_if_else.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_if_then.carbon b/explorer/testdata/unformed/static/fail_if_then.carbon index 19bb75997317..cf47d23161f4 100644 --- a/explorer/testdata/unformed/static/fail_if_then.carbon +++ b/explorer/testdata/unformed/static/fail_if_then.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_increment.carbon b/explorer/testdata/unformed/static/fail_increment.carbon index aa3905ca0255..cb60e39197b2 100644 --- a/explorer/testdata/unformed/static/fail_increment.carbon +++ b/explorer/testdata/unformed/static/fail_increment.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_local_pattern_declare.carbon b/explorer/testdata/unformed/static/fail_local_pattern_declare.carbon index baa59d8aefc9..f2ac75af83fb 100644 --- a/explorer/testdata/unformed/static/fail_local_pattern_declare.carbon +++ b/explorer/testdata/unformed/static/fail_local_pattern_declare.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_local_rhs_assign.carbon b/explorer/testdata/unformed/static/fail_local_rhs_assign.carbon index 449bb9fe10c4..01aaa0ebeb58 100644 --- a/explorer/testdata/unformed/static/fail_local_rhs_assign.carbon +++ b/explorer/testdata/unformed/static/fail_local_rhs_assign.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_match_clause.carbon b/explorer/testdata/unformed/static/fail_match_clause.carbon index e16b90b189ef..06fbfb9f5532 100644 --- a/explorer/testdata/unformed/static/fail_match_clause.carbon +++ b/explorer/testdata/unformed/static/fail_match_clause.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_match_expression.carbon b/explorer/testdata/unformed/static/fail_match_expression.carbon index edcfbd4a45ff..a35bb7bb5b45 100644 --- a/explorer/testdata/unformed/static/fail_match_expression.carbon +++ b/explorer/testdata/unformed/static/fail_match_expression.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_param.carbon b/explorer/testdata/unformed/static/fail_param.carbon index 43de0f18f190..1fc14d064f51 100644 --- a/explorer/testdata/unformed/static/fail_param.carbon +++ b/explorer/testdata/unformed/static/fail_param.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_return.carbon b/explorer/testdata/unformed/static/fail_return.carbon index d7df4fa0cd2d..885305b4dd7b 100644 --- a/explorer/testdata/unformed/static/fail_return.carbon +++ b/explorer/testdata/unformed/static/fail_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_returned_var.carbon b/explorer/testdata/unformed/static/fail_returned_var.carbon index cbf41523d15e..61e3792588c1 100644 --- a/explorer/testdata/unformed/static/fail_returned_var.carbon +++ b/explorer/testdata/unformed/static/fail_returned_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_rhs_def.carbon b/explorer/testdata/unformed/static/fail_rhs_def.carbon index 9e166d23cc84..c1259a07f4a9 100644 --- a/explorer/testdata/unformed/static/fail_rhs_def.carbon +++ b/explorer/testdata/unformed/static/fail_rhs_def.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_struct_member_access.carbon b/explorer/testdata/unformed/static/fail_struct_member_access.carbon index 185cfa79e376..fe30ce1299e4 100644 --- a/explorer/testdata/unformed/static/fail_struct_member_access.carbon +++ b/explorer/testdata/unformed/static/fail_struct_member_access.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_while_body.carbon b/explorer/testdata/unformed/static/fail_while_body.carbon index c0ff72802991..e0748044b980 100644 --- a/explorer/testdata/unformed/static/fail_while_body.carbon +++ b/explorer/testdata/unformed/static/fail_while_body.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/unformed/static/fail_while_cond.carbon b/explorer/testdata/unformed/static/fail_while_cond.carbon index 95a4fd8449ad..f531a2fd06c7 100644 --- a/explorer/testdata/unformed/static/fail_while_cond.carbon +++ b/explorer/testdata/unformed/static/fail_while_cond.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_init_type_mismatch.carbon b/explorer/testdata/var/global/fail_init_type_mismatch.carbon index 7e8945e11ec0..3d4cace03fa4 100644 --- a/explorer/testdata/var/global/fail_init_type_mismatch.carbon +++ b/explorer/testdata/var/global/fail_init_type_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_instantiate_global_abstract.carbon b/explorer/testdata/var/global/fail_instantiate_global_abstract.carbon index ecd4920bb8d2..93c0fbc4869b 100644 --- a/explorer/testdata/var/global/fail_instantiate_global_abstract.carbon +++ b/explorer/testdata/var/global/fail_instantiate_global_abstract.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_invalid_var_expression.carbon b/explorer/testdata/var/global/fail_invalid_var_expression.carbon index 96636bcb69f2..87e8d70cf07a 100644 --- a/explorer/testdata/var/global/fail_invalid_var_expression.carbon +++ b/explorer/testdata/var/global/fail_invalid_var_expression.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_modify_in_constant_expr.carbon b/explorer/testdata/var/global/fail_modify_in_constant_expr.carbon index ea58637db62d..bb9226729dd5 100644 --- a/explorer/testdata/var/global/fail_modify_in_constant_expr.carbon +++ b/explorer/testdata/var/global/fail_modify_in_constant_expr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_named_self.carbon b/explorer/testdata/var/global/fail_named_self.carbon index 79b8fc7ad2a2..247bd0d0c673 100644 --- a/explorer/testdata/var/global/fail_named_self.carbon +++ b/explorer/testdata/var/global/fail_named_self.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_nested_binding.carbon b/explorer/testdata/var/global/fail_nested_binding.carbon index 43e8a67aa8ed..2e92cebafc99 100644 --- a/explorer/testdata/var/global/fail_nested_binding.carbon +++ b/explorer/testdata/var/global/fail_nested_binding.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/fail_type_only.carbon b/explorer/testdata/var/global/fail_type_only.carbon index e3b25211575b..c6eed9e214ef 100644 --- a/explorer/testdata/var/global/fail_type_only.carbon +++ b/explorer/testdata/var/global/fail_type_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/implicit_conversion.carbon b/explorer/testdata/var/global/implicit_conversion.carbon index f249816fc932..e24aecad7d32 100644 --- a/explorer/testdata/var/global/implicit_conversion.carbon +++ b/explorer/testdata/var/global/implicit_conversion.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/init_and_read.carbon b/explorer/testdata/var/global/init_and_read.carbon index 3e75273fa04e..8cfb0a3e59b2 100644 --- a/explorer/testdata/var/global/init_and_read.carbon +++ b/explorer/testdata/var/global/init_and_read.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/init_from_function.carbon b/explorer/testdata/var/global/init_from_function.carbon index c98060ec53a6..9658fc4ca560 100644 --- a/explorer/testdata/var/global/init_from_function.carbon +++ b/explorer/testdata/var/global/init_from_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/init_order.carbon b/explorer/testdata/var/global/init_order.carbon index 00c83a8d5fd4..ab37575c6f32 100644 --- a/explorer/testdata/var/global/init_order.carbon +++ b/explorer/testdata/var/global/init_order.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/shadowing.carbon b/explorer/testdata/var/global/shadowing.carbon index 56c96306ff2e..bbe51f1f0e54 100644 --- a/explorer/testdata/var/global/shadowing.carbon +++ b/explorer/testdata/var/global/shadowing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/write.carbon b/explorer/testdata/var/global/write.carbon index 70a960493cab..77e1b39e3138 100644 --- a/explorer/testdata/var/global/write.carbon +++ b/explorer/testdata/var/global/write.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/global/write_from_function.carbon b/explorer/testdata/var/global/write_from_function.carbon index 88708e539711..135fd99c8184 100644 --- a/explorer/testdata/var/global/write_from_function.carbon +++ b/explorer/testdata/var/global/write_from_function.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/destroyed.carbon b/explorer/testdata/var/local/destroyed.carbon index e865a672f585..8d199268a789 100644 --- a/explorer/testdata/var/local/destroyed.carbon +++ b/explorer/testdata/var/local/destroyed.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_generic_binding_in_type.carbon b/explorer/testdata/var/local/fail_generic_binding_in_type.carbon index 508f23d366f7..d853ed71bdb5 100644 --- a/explorer/testdata/var/local/fail_generic_binding_in_type.carbon +++ b/explorer/testdata/var/local/fail_generic_binding_in_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_missing_intro.carbon b/explorer/testdata/var/local/fail_missing_intro.carbon index 7421da8fafd3..41576db5f2eb 100644 --- a/explorer/testdata/var/local/fail_missing_intro.carbon +++ b/explorer/testdata/var/local/fail_missing_intro.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_named_self_type.carbon b/explorer/testdata/var/local/fail_named_self_type.carbon index 8591cdfd2608..42b85c184350 100644 --- a/explorer/testdata/var/local/fail_named_self_type.carbon +++ b/explorer/testdata/var/local/fail_named_self_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_nested_binding_in_type.carbon b/explorer/testdata/var/local/fail_nested_binding_in_type.carbon index 214ca92dc6e3..8c6e5da9d19c 100644 --- a/explorer/testdata/var/local/fail_nested_binding_in_type.carbon +++ b/explorer/testdata/var/local/fail_nested_binding_in_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_nested_type_only.carbon b/explorer/testdata/var/local/fail_nested_type_only.carbon index 4559115974fc..aeb7e1b3bf0b 100644 --- a/explorer/testdata/var/local/fail_nested_type_only.carbon +++ b/explorer/testdata/var/local/fail_nested_type_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_type_only.carbon b/explorer/testdata/var/local/fail_type_only.carbon index cadb7e29ad64..4bbb5d2f2e88 100644 --- a/explorer/testdata/var/local/fail_type_only.carbon +++ b/explorer/testdata/var/local/fail_type_only.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/fail_value_as_type.carbon b/explorer/testdata/var/local/fail_value_as_type.carbon index 69d3c9f36214..070ae9aebb0b 100644 --- a/explorer/testdata/var/local/fail_value_as_type.carbon +++ b/explorer/testdata/var/local/fail_value_as_type.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/nested_binding.carbon b/explorer/testdata/var/local/nested_binding.carbon index 41cd429204d6..fd451597724a 100644 --- a/explorer/testdata/var/local/nested_binding.carbon +++ b/explorer/testdata/var/local/nested_binding.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/placeholder.carbon b/explorer/testdata/var/local/placeholder.carbon index 819f95226c63..923557184004 100644 --- a/explorer/testdata/var/local/placeholder.carbon +++ b/explorer/testdata/var/local/placeholder.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_binding_from_initializing_expr.carbon b/explorer/testdata/var/local/reference_expr_binding_from_initializing_expr.carbon index d1cd2d90335c..a99fa7dc93a4 100644 --- a/explorer/testdata/var/local/reference_expr_binding_from_initializing_expr.carbon +++ b/explorer/testdata/var/local/reference_expr_binding_from_initializing_expr.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_binding_from_reference.carbon b/explorer/testdata/var/local/reference_expr_binding_from_reference.carbon index ab601d6c4259..0b10df120eff 100644 --- a/explorer/testdata/var/local/reference_expr_binding_from_reference.carbon +++ b/explorer/testdata/var/local/reference_expr_binding_from_reference.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_binding_from_value.carbon b/explorer/testdata/var/local/reference_expr_binding_from_value.carbon index 41935eeae64a..102bf34dcf3f 100644 --- a/explorer/testdata/var/local/reference_expr_binding_from_value.carbon +++ b/explorer/testdata/var/local/reference_expr_binding_from_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_from_initializing.carbon b/explorer/testdata/var/local/reference_expr_from_initializing.carbon index 95e9d7e49a3a..b41106d5dcba 100644 --- a/explorer/testdata/var/local/reference_expr_from_initializing.carbon +++ b/explorer/testdata/var/local/reference_expr_from_initializing.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_from_initializing_returned.carbon b/explorer/testdata/var/local/reference_expr_from_initializing_returned.carbon index e109c44d4645..0cdd0d76d3c1 100644 --- a/explorer/testdata/var/local/reference_expr_from_initializing_returned.carbon +++ b/explorer/testdata/var/local/reference_expr_from_initializing_returned.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_from_initializing_returned_nested.carbon b/explorer/testdata/var/local/reference_expr_from_initializing_returned_nested.carbon index 166ff23cc92f..a064295ed2f8 100644 --- a/explorer/testdata/var/local/reference_expr_from_initializing_returned_nested.carbon +++ b/explorer/testdata/var/local/reference_expr_from_initializing_returned_nested.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_from_reference.carbon b/explorer/testdata/var/local/reference_expr_from_reference.carbon index 9e786463032f..13a27fea5638 100644 --- a/explorer/testdata/var/local/reference_expr_from_reference.carbon +++ b/explorer/testdata/var/local/reference_expr_from_reference.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/reference_expr_from_value.carbon b/explorer/testdata/var/local/reference_expr_from_value.carbon index 5a5dd3cb7c78..d6a2fde87ee2 100644 --- a/explorer/testdata/var/local/reference_expr_from_value.carbon +++ b/explorer/testdata/var/local/reference_expr_from_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/local/use_value.carbon b/explorer/testdata/var/local/use_value.carbon index 942e5045e512..11eb400a64b7 100644 --- a/explorer/testdata/var/local/use_value.carbon +++ b/explorer/testdata/var/local/use_value.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/fail_duplicate_return_var.carbon b/explorer/testdata/var/returned/fail_duplicate_return_var.carbon index dba2407b5d14..5bf332c19a0e 100644 --- a/explorer/testdata/var/returned/fail_duplicate_return_var.carbon +++ b/explorer/testdata/var/returned/fail_duplicate_return_var.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/fail_missing_declaration.carbon b/explorer/testdata/var/returned/fail_missing_declaration.carbon index 90325a188f24..ae5d45a5babb 100644 --- a/explorer/testdata/var/returned/fail_missing_declaration.carbon +++ b/explorer/testdata/var/returned/fail_missing_declaration.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/fail_missing_return.carbon b/explorer/testdata/var/returned/fail_missing_return.carbon index 52c258592a83..462160060aa2 100644 --- a/explorer/testdata/var/returned/fail_missing_return.carbon +++ b/explorer/testdata/var/returned/fail_missing_return.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/fail_returned_var_mismatch_signature.carbon b/explorer/testdata/var/returned/fail_returned_var_mismatch_signature.carbon index 62fa718b083c..60d32d2d7555 100644 --- a/explorer/testdata/var/returned/fail_returned_var_mismatch_signature.carbon +++ b/explorer/testdata/var/returned/fail_returned_var_mismatch_signature.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/fail_returned_var_multi_auto.carbon b/explorer/testdata/var/returned/fail_returned_var_multi_auto.carbon index 02b9f0b74d7a..101f6b993789 100644 --- a/explorer/testdata/var/returned/fail_returned_var_multi_auto.carbon +++ b/explorer/testdata/var/returned/fail_returned_var_multi_auto.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/fail_returned_var_type_mismatch.carbon b/explorer/testdata/var/returned/fail_returned_var_type_mismatch.carbon index fd4ac5b03d55..ffa7d1c26d00 100644 --- a/explorer/testdata/var/returned/fail_returned_var_type_mismatch.carbon +++ b/explorer/testdata/var/returned/fail_returned_var_type_mismatch.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/multiple_returned_var_control_flow.carbon b/explorer/testdata/var/returned/multiple_returned_var_control_flow.carbon index 633cd519b39b..c22aca32d67b 100644 --- a/explorer/testdata/var/returned/multiple_returned_var_control_flow.carbon +++ b/explorer/testdata/var/returned/multiple_returned_var_control_flow.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/normal_return_control_flow.carbon b/explorer/testdata/var/returned/normal_return_control_flow.carbon index a3878a02e314..c4dfec461735 100644 --- a/explorer/testdata/var/returned/normal_return_control_flow.carbon +++ b/explorer/testdata/var/returned/normal_return_control_flow.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/returned_var_auto.carbon b/explorer/testdata/var/returned/returned_var_auto.carbon index 5c63c9082c41..05298635155f 100644 --- a/explorer/testdata/var/returned/returned_var_auto.carbon +++ b/explorer/testdata/var/returned/returned_var_auto.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/returned_var_basic.carbon b/explorer/testdata/var/returned/returned_var_basic.carbon index 0a30809ba780..1bcdcc3abe0e 100644 --- a/explorer/testdata/var/returned/returned_var_basic.carbon +++ b/explorer/testdata/var/returned/returned_var_basic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/returned_var_name_lookup.carbon b/explorer/testdata/var/returned/returned_var_name_lookup.carbon index 762046d471e7..4f059ede99b5 100644 --- a/explorer/testdata/var/returned/returned_var_name_lookup.carbon +++ b/explorer/testdata/var/returned/returned_var_name_lookup.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/var/returned/returned_var_omitted_expression.carbon b/explorer/testdata/var/returned/returned_var_omitted_expression.carbon index 1784aaeb76f1..41417ee197a1 100644 --- a/explorer/testdata/var/returned/returned_var_omitted_expression.carbon +++ b/explorer/testdata/var/returned/returned_var_omitted_expression.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/while/basic.carbon b/explorer/testdata/while/basic.carbon index 02966ca33dd6..31f7cb1f1b5c 100644 --- a/explorer/testdata/while/basic.carbon +++ b/explorer/testdata/while/basic.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/while/break.carbon b/explorer/testdata/while/break.carbon index 9361530c19c8..bd8e3c687b6d 100644 --- a/explorer/testdata/while/break.carbon +++ b/explorer/testdata/while/break.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/while/continue.carbon b/explorer/testdata/while/continue.carbon index 0d9dbb23d266..1d2fa3f087eb 100644 --- a/explorer/testdata/while/continue.carbon +++ b/explorer/testdata/while/continue.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api; diff --git a/explorer/testdata/while/convert_condition.carbon b/explorer/testdata/while/convert_condition.carbon index b86d7eb1ffa9..2657d71bdef6 100644 --- a/explorer/testdata/while/convert_condition.carbon +++ b/explorer/testdata/while/convert_condition.carbon @@ -2,7 +2,7 @@ // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // -// AUTOUPDATE +// NOAUTOUPDATE package ExplorerTest api;