test_list.bzl 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. "continue1",
  13. "experimental_continuation1",
  14. "experimental_continuation2",
  15. "experimental_continuation3",
  16. "experimental_continuation4",
  17. "experimental_continuation5",
  18. "experimental_continuation6",
  19. "experimental_continuation7",
  20. "experimental_continuation8",
  21. "experimental_continuation9",
  22. "fun1",
  23. "fun2",
  24. "fun3",
  25. "fun4",
  26. "fun5",
  27. "fun6_fail_type",
  28. "fun_named_params",
  29. "fun_named_params2",
  30. "fun_recur",
  31. "funptr1",
  32. "generic_function1",
  33. "generic_function2",
  34. "generic_function3",
  35. "generic_function_apply",
  36. "generic_function_fail1",
  37. "generic_function_fail2",
  38. "generic_function_fail3",
  39. "generic_function_swap",
  40. "generic_function_tuple_map",
  41. "global_variable1",
  42. "global_variable2",
  43. "global_variable3",
  44. "global_variable4",
  45. "global_variable5",
  46. "global_variable6",
  47. "global_variable7",
  48. "global_variable8",
  49. "if_else",
  50. "if_else_if",
  51. "if_else_if_else",
  52. "if_false",
  53. "if_nesting",
  54. "if_true",
  55. "ignored_parameter",
  56. "invalid_char",
  57. "match_any_int",
  58. "match_int",
  59. "match_int_default",
  60. "match_placeholder",
  61. "next",
  62. "no_match",
  63. "pattern_init",
  64. "pattern_variable_fail",
  65. "placeholder_variable",
  66. "record1",
  67. "star",
  68. "struct1",
  69. "struct2",
  70. "struct3",
  71. "struct_field_access_mismatch",
  72. "struct_field_mismatch",
  73. "struct_field_missing",
  74. "tuple1",
  75. "tuple2",
  76. "tuple3",
  77. "tuple4",
  78. "tuple5",
  79. "tuple_assign",
  80. "tuple_equality",
  81. "tuple_equality2",
  82. "tuple_equality3",
  83. "tuple_match",
  84. "tuple_match2",
  85. "tuple_match3",
  86. "type_compute",
  87. "type_compute2",
  88. "type_compute3",
  89. "while1",
  90. "zero",
  91. ]