forked from OSchip/llvm-project
zorg Xcode python test suite target arch update
This changes the Xcode target used by the Green Dragon Xcode CI. When calling xcodebuild with LLDB_PYTHON_TESTSUITE_ARCH set, the arch's xUnit XML output is now set to an arch-specific filename: $(BUILD_DIR)/test-results-$(LLDB_PYTHON_TESTSUITE_ARCH).xml. The change also ensures that the Python testsuite sees the Xcode build settings passed in through environment variables. llvm-svn: 282605
This commit is contained in:
parent
e524f50882
commit
386236509e
|
@ -6421,7 +6421,7 @@
|
|||
/* Begin PBXLegacyTarget section */
|
||||
2387551E1C24974600CCE8C3 /* lldb-python-test-suite */ = {
|
||||
isa = PBXLegacyTarget;
|
||||
buildArgumentsString = "-u $(SRCROOT)/test/dotest.py --apple-sdk $(PLATFORM_NAME) --executable=$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/lldb -C $(LLDB_PYTHON_TESTSUITE_CC) --arch $(LLDB_PYTHON_TESTSUITE_ARCH) --session-file-format fm --results-formatter lldbsuite.test_event.formatter.xunit.XunitFormatter --results-file $(BUILD_DIR)/test-results.xml --rerun-all-issues --env TERM=vt100 -O--xpass=ignore";
|
||||
buildArgumentsString = "-u $(SRCROOT)/test/dotest.py --apple-sdk $(PLATFORM_NAME) --executable=$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/lldb -C $(LLDB_PYTHON_TESTSUITE_CC) --arch $(LLDB_PYTHON_TESTSUITE_ARCH) --session-file-format fm --results-formatter lldbsuite.test_event.formatter.xunit.XunitFormatter --results-file $(BUILD_DIR)/test-results-$(LLDB_PYTHON_TESTSUITE_ARCH).xml --rerun-all-issues --env TERM=vt100 -O--xpass=ignore";
|
||||
buildConfigurationList = 238755241C24974600CCE8C3 /* Build configuration list for PBXLegacyTarget "lldb-python-test-suite" */;
|
||||
buildPhases = (
|
||||
);
|
||||
|
@ -6430,7 +6430,7 @@
|
|||
dependencies = (
|
||||
);
|
||||
name = "lldb-python-test-suite";
|
||||
passBuildSettingsInEnvironment = 0;
|
||||
passBuildSettingsInEnvironment = 1;
|
||||
productName = "LLDB Python Test Suite";
|
||||
};
|
||||
2687EAC51508110B00DD8C2E /* install-headers */ = {
|
||||
|
|
Loading…
Reference in New Issue