test_list.bzl 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. """Auto-generated list of tests. Run `./tests.py --update_list` to update."""
  5. TEST_LIST = [
  6. "assignment_copy1",
  7. "assignment_copy2",
  8. "block1",
  9. "block2",
  10. "break1",
  11. "choice1",
  12. "class1",
  13. "class2",
  14. "class3",
  15. "class_field_access_mismatch",
  16. "class_field_mismatch",
  17. "class_field_missing",
  18. "continue1",
  19. "experimental_continuation1",
  20. "experimental_continuation2",
  21. "experimental_continuation3",
  22. "experimental_continuation4",
  23. "experimental_continuation5",
  24. "experimental_continuation6",
  25. "experimental_continuation7",
  26. "experimental_continuation9",
  27. "fun1",
  28. "fun2",
  29. "fun3",
  30. "fun4",
  31. "fun5",
  32. "fun6_fail_type",
  33. "fun_named_params",
  34. "fun_named_params2",
  35. "fun_recur",
  36. "funptr1",
  37. "generic_function1",
  38. "generic_function2",
  39. "generic_function3",
  40. "generic_function_apply",
  41. "generic_function_fail1",
  42. "generic_function_fail2",
  43. "generic_function_fail3",
  44. "generic_function_swap",
  45. "generic_function_tuple_map",
  46. "global_variable1",
  47. "global_variable2",
  48. "global_variable3",
  49. "global_variable4",
  50. "global_variable5",
  51. "global_variable6",
  52. "global_variable7",
  53. "global_variable8",
  54. "if_else",
  55. "if_else_if",
  56. "if_else_if_else",
  57. "if_false",
  58. "if_nesting",
  59. "if_true",
  60. "ignored_parameter",
  61. "import_late",
  62. "import_nonexistent_library",
  63. "import_nonexistent_package",
  64. "invalid_char",
  65. "match_any_int",
  66. "match_int",
  67. "match_int_default",
  68. "match_placeholder",
  69. "next",
  70. "no_match",
  71. "package_library",
  72. "package_missing",
  73. "pattern_init",
  74. "pattern_variable_fail",
  75. "placeholder_variable",
  76. "print1",
  77. "record1",
  78. "return_auto",
  79. "return_empty_explicit",
  80. "return_empty_explicit_fail",
  81. "return_empty_implicit1",
  82. "return_empty_implicit2",
  83. "return_empty_implicit_fail1",
  84. "return_empty_implicit_fail2",
  85. "star",
  86. "string1",
  87. "string2",
  88. "string3",
  89. "string_fail1",
  90. "string_fail2",
  91. "string_fail3",
  92. "string_fail4",
  93. "string_fail5",
  94. "string_fail6",
  95. "tuple1",
  96. "tuple2",
  97. "tuple3",
  98. "tuple4",
  99. "tuple5",
  100. "tuple_assign",
  101. "tuple_equality",
  102. "tuple_equality2",
  103. "tuple_equality3",
  104. "tuple_match",
  105. "tuple_match2",
  106. "tuple_match3",
  107. "type_compute",
  108. "type_compute2",
  109. "type_compute3",
  110. "type_match",
  111. "while1",
  112. "zero",
  113. ]