[PATCH] D97046: [lit] Add "late_tests" test suite config option

David Zarzycki via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 1 03:18:29 PST 2021


davezarzycki added a comment.

Ping. I'd like to fully generalize the recently introduced `early_tests` into `test_phases`. This will address earlier concerns and allow people to scale their test phasing with their maintenance goals/non-goals. For example, Swift's low-maintenance config would look like this:

config.test_phases = {

  "stdlib/CharacterPropertiesLong.swift" : -1,
  "stdlib/FixedPoint.swift.gyb" : -1,
  "IDE/complete_ambiguous.swift" : -1,
  "stdlib/UnicodeTrieGenerator.gyb" : -1,
  "IDE/complete_value_expr.swift" : -1,
  "compiler_crashers" : +1,
  "compiler_crashers_fixed" : +1,
  "compiler_crashers_2" : +1,
  "compiler_crashers_2_fixed" : +1,

}

Thoughts? Feedback?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D97046/new/

https://reviews.llvm.org/D97046



More information about the llvm-commits mailing list