[PATCH] D44002: [test] Add dotest wrapper

Pavel Labath via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 2 09:44:11 PST 2018


labath added a comment.

I've been wanting to implement some thing like this myself, but I did not attempt it because of the issue of integration with the xcode project. If you can handle that part, then I'm all for it.

Having just a dotest frontend with hardcoded default options is fine, but when we start a more deeper integrations we will need to think about the different config issue that Adrian pointed out. BTW, the compiler is not the only config option that is variable. For local builds there is at least the "--arch" option (so you can test 32-bit capabilities). Then for remote testing you also have the --platform-*** family of options. And our bots also use the --skip-category option selectively (to skip watchpoint tests, as some devices don't support them).



================
Comment at: test/dotest.in:1-3
+#!/usr/bin/env sh
+
+ at LLDB_SOURCE_DIR@/test/dotest.py -q @LLDB_DOTEST_ARGS_STR@ $@
----------------
I think this should be a python file, for the sake of windows folks.


Repository:
  rL LLVM

https://reviews.llvm.org/D44002





More information about the llvm-commits mailing list