test_list.bzl 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. "if1",
  50. "if2",
  51. "if3",
  52. "ignored_parameter",
  53. "invalid_char",
  54. "match_any_int",
  55. "match_int",
  56. "match_int_default",
  57. "match_placeholder",
  58. "match_type",
  59. "next",
  60. "no_match",
  61. "pattern_init",
  62. "pattern_variable_fail",
  63. "placeholder_variable",
  64. "record1",
  65. "star",
  66. "struct1",
  67. "struct2",
  68. "struct3",
  69. "tuple1",
  70. "tuple2",
  71. "tuple3",
  72. "tuple4",
  73. "tuple5",
  74. "tuple_assign",
  75. "tuple_equality",
  76. "tuple_equality2",
  77. "tuple_equality3",
  78. "tuple_match",
  79. "tuple_match2",
  80. "tuple_match3",
  81. "type_compute",
  82. "type_compute2",
  83. "type_compute3",
  84. "while1",
  85. "zero",
  86. ]