[PATCH] D77987: [test-suite] Move lit test result codes into llvm/lit

Julian Lettner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 13 15:15:31 PDT 2020


yln added inline comments.


================
Comment at: litsupport/test.py:38
         if not os.path.exists(context.executable):
-            return lit.Test.Result(NOEXE, "Executable '%s' is missing" %
+            return lit.Test.Result(lit.Test.NOEXE, "Executable '%s' is missing" %
                                    context.executable)
----------------
I think the existing category of `UNRESOLVED` would be a good semantic fit here.


Repository:
  rT test-suite

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

https://reviews.llvm.org/D77987





More information about the llvm-commits mailing list