[libcxx-commits] [PATCH] D84096: [libcxx][lit] Simplify parsing of trailing executor arguments
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jul 20 05:31:46 PDT 2020
ldionne requested changes to this revision.
ldionne added a comment.
This revision now requires changes to proceed.
That's a nice cleanup! Only a nitpick.
================
Comment at: libcxx/utils/run.py:29
- if len(remaining) < 2:
+ commandLine = args.command # argparse will strip the initial '--'
+ if len(commandLine) < 1:
----------------
No need for the comment anymore.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D84096/new/
https://reviews.llvm.org/D84096
More information about the libcxx-commits
mailing list