Просмотр исходного кода

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.
Jon Ross-Perkins 1 год назад
Родитель
Сommit
129f31710d
100 измененных файлов с 99 добавлено и 109 удалено
  1. 0 10
      explorer/autoupdate_testdata.sh
  2. 1 1
      explorer/testdata/addr/fail_method_let.carbon
  3. 1 1
      explorer/testdata/addr/fail_method_self_misspelled.carbon
  4. 1 1
      explorer/testdata/addr/fail_method_self_type.carbon
  5. 1 1
      explorer/testdata/addr/fail_missing_addr.carbon
  6. 1 1
      explorer/testdata/addr/method.carbon
  7. 1 1
      explorer/testdata/addr/nested_method.carbon
  8. 1 1
      explorer/testdata/alias/alias_in_class.carbon
  9. 1 1
      explorer/testdata/alias/class_alias.carbon
  10. 1 1
      explorer/testdata/alias/fail_alias_expression.carbon
  11. 1 1
      explorer/testdata/alias/fail_alias_var.carbon
  12. 1 1
      explorer/testdata/alias/fail_interface_method_as_class_member.carbon
  13. 1 1
      explorer/testdata/alias/fail_namespace_alias_member.carbon
  14. 1 1
      explorer/testdata/alias/fail_self_alias.carbon
  15. 1 1
      explorer/testdata/alias/fail_wrong_fn_alias_use.carbon
  16. 1 1
      explorer/testdata/alias/fail_wrong_fn_alias_use_expr.carbon
  17. 1 1
      explorer/testdata/alias/fail_wrong_interface_alias_use.carbon
  18. 1 1
      explorer/testdata/alias/fail_wrong_namepsace_alias_use.carbon
  19. 1 1
      explorer/testdata/alias/function_alias.carbon
  20. 1 1
      explorer/testdata/alias/interface_alias.carbon
  21. 1 1
      explorer/testdata/alias/member_name_alias.carbon
  22. 1 1
      explorer/testdata/alias/namespace_alias.carbon
  23. 1 1
      explorer/testdata/alias/namespace_alias_recursive.carbon
  24. 1 1
      explorer/testdata/alias/struct_alias.carbon
  25. 1 1
      explorer/testdata/alias/type_alias.carbon
  26. 1 1
      explorer/testdata/array/conversion.carbon
  27. 1 1
      explorer/testdata/array/deduce_size_from_array.carbon
  28. 1 1
      explorer/testdata/array/deduce_size_from_array_destructured.carbon
  29. 1 1
      explorer/testdata/array/deduce_size_from_tuple.carbon
  30. 1 1
      explorer/testdata/array/deduce_size_from_tuple_destructured.carbon
  31. 1 1
      explorer/testdata/array/deduce_zero_size_from_array.carbon
  32. 1 1
      explorer/testdata/array/deduce_zero_size_from_empty_tuple.carbon
  33. 1 1
      explorer/testdata/array/element_convertible_to_type.carbon
  34. 1 1
      explorer/testdata/array/fail_index.carbon
  35. 1 1
      explorer/testdata/array/fail_index_deduced_size_from_array.carbon
  36. 1 1
      explorer/testdata/array/fail_index_deduced_size_from_tuple.carbon
  37. 1 1
      explorer/testdata/array/fail_negative_size.carbon
  38. 1 1
      explorer/testdata/array/fail_print_uninitalized_array_element.carbon
  39. 1 1
      explorer/testdata/array/fail_size_mismatch.carbon
  40. 1 1
      explorer/testdata/array/fail_store_to_uninitialized_array.carbon
  41. 1 1
      explorer/testdata/array/fail_store_to_uninitialized_global_array.carbon
  42. 1 1
      explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_different_subtuples_size.carbon
  43. 1 1
      explorer/testdata/array/fail_to_deduce_nested_array_size_from_tuple_of_different_types.carbon
  44. 1 1
      explorer/testdata/array/fail_to_deduce_nested_array_size_in_tuple_no_expression_to_deduce_from.carbon
  45. 1 1
      explorer/testdata/array/fail_to_deduce_size_from_int.carbon
  46. 1 1
      explorer/testdata/array/fail_to_deduce_size_from_tuple_of_different_types.carbon
  47. 1 1
      explorer/testdata/array/fail_to_deduce_size_no_expression_to_deduce_from.carbon
  48. 1 1
      explorer/testdata/array/fail_to_index_deduced_nested_size_from_array.carbon
  49. 1 1
      explorer/testdata/array/fail_to_index_deduced_nested_size_from_tuple.carbon
  50. 1 1
      explorer/testdata/array/index.carbon
  51. 1 1
      explorer/testdata/array/nested.carbon
  52. 1 1
      explorer/testdata/array/nested_and_external_array_size_deduction_from_tuple.carbon
  53. 1 1
      explorer/testdata/array/nested_array_size_deduction_from_array.carbon
  54. 1 1
      explorer/testdata/array/nested_array_size_deduction_from_empty_tuple.carbon
  55. 1 1
      explorer/testdata/array/nested_array_size_deduction_from_tuple.carbon
  56. 1 1
      explorer/testdata/array/nested_array_size_deduction_from_tuple_of_tuple_and_array.carbon
  57. 1 1
      explorer/testdata/array/three_dim_array_size_deduction_from_tuple.carbon
  58. 1 1
      explorer/testdata/as/as_same_type.carbon
  59. 1 1
      explorer/testdata/as/convert.carbon
  60. 1 1
      explorer/testdata/as/fail_destination_not_type.carbon
  61. 1 1
      explorer/testdata/as/fail_intrinsic_convert_no_args.carbon
  62. 1 1
      explorer/testdata/as/fail_intrinsic_convert_non_type.carbon
  63. 1 1
      explorer/testdata/as/fail_intrinsic_convert_non_value.carbon
  64. 1 1
      explorer/testdata/as/fail_intrinsic_no_args.carbon
  65. 1 1
      explorer/testdata/as/fail_intrinsic_non_type.carbon
  66. 1 1
      explorer/testdata/as/fail_no_conversion.carbon
  67. 1 1
      explorer/testdata/as/implicit_as.carbon
  68. 1 1
      explorer/testdata/as/struct_as_class.carbon
  69. 1 1
      explorer/testdata/assert/assert.carbon
  70. 1 1
      explorer/testdata/assert/convert.carbon
  71. 1 1
      explorer/testdata/assert/fail_assert.carbon
  72. 1 1
      explorer/testdata/assert/fail_convert.carbon
  73. 1 1
      explorer/testdata/assert/fail_intrinsic_bool_type.carbon
  74. 1 1
      explorer/testdata/assert/fail_intrinsic_no_args.carbon
  75. 1 1
      explorer/testdata/assert/fail_intrinsic_no_convert.carbon
  76. 1 1
      explorer/testdata/assert/fail_intrinsic_str_type.carbon
  77. 1 1
      explorer/testdata/assign/convert_rhs.carbon
  78. 1 1
      explorer/testdata/assign/destruct_original.carbon
  79. 1 1
      explorer/testdata/assign/reassign_original.carbon
  80. 1 1
      explorer/testdata/assoc_const/bug_multi_impl_scoping.carbon
  81. 1 1
      explorer/testdata/assoc_const/fail_anonymous.carbon
  82. 1 1
      explorer/testdata/assoc_const/fail_different_type.carbon
  83. 1 1
      explorer/testdata/assoc_const/fail_different_value.carbon
  84. 1 1
      explorer/testdata/assoc_const/fail_equal_indirectly.carbon
  85. 1 1
      explorer/testdata/assoc_const/fail_equal_to_dependent_type.carbon
  86. 1 1
      explorer/testdata/assoc_const/fail_implied_constraints.carbon
  87. 1 1
      explorer/testdata/assoc_const/fail_incomplete_impl_1.carbon
  88. 1 1
      explorer/testdata/assoc_const/fail_incomplete_impl_2.carbon
  89. 1 1
      explorer/testdata/assoc_const/fail_indirectly_equal.carbon
  90. 1 1
      explorer/testdata/assoc_const/fail_match_in_deduction.carbon
  91. 1 1
      explorer/testdata/assoc_const/fail_missing_equal.carbon
  92. 1 1
      explorer/testdata/assoc_const/fail_missing_rewrite.carbon
  93. 1 1
      explorer/testdata/assoc_const/fail_multiple_deduction.carbon
  94. 1 1
      explorer/testdata/assoc_const/fail_overspecified_impl.carbon
  95. 1 1
      explorer/testdata/assoc_const/fail_redefined.carbon
  96. 1 1
      explorer/testdata/assoc_const/fail_rewrite_creates_infinite_type.carbon
  97. 1 1
      explorer/testdata/assoc_const/fail_rewrite_cycle.carbon
  98. 1 1
      explorer/testdata/assoc_const/fail_rewrite_depends_on_later_rewrite.carbon
  99. 1 1
      explorer/testdata/assoc_const/fail_simple_rewrite_cycle_1.carbon
  100. 1 1
      explorer/testdata/assoc_const/fail_simple_rewrite_cycle_2.carbon

+ 0 - 10
explorer/autoupdate_testdata.sh

@@ -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

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;

+ 1 - 1
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;

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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?
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

+ 1 - 1
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;
 

Некоторые файлы не были показаны из-за большого количества измененных файлов