[Lldb-commits] [lldb] r371020 - [dotest] Remove top-level Makefile

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 5 00:38:56 PDT 2019


Author: labath
Date: Thu Sep  5 00:38:55 2019
New Revision: 371020

URL: http://llvm.org/viewvc/llvm-project?rev=371020&view=rev
Log:
[dotest] Remove top-level Makefile

This appears to be a really ancient  way of running the test suite. It
is also completely disfunctional now, and probably has been for a long
time.

Removed:
    lldb/trunk/packages/Python/lldbsuite/test/Makefile

Removed: lldb/trunk/packages/Python/lldbsuite/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/Makefile?rev=371019&view=auto
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/Makefile (removed)
@@ -1,32 +0,0 @@
-include $(LLDB_LEVEL)/Makefile
-
-.PHONY: programs
-
-all:: check-local
-
-#----------------------------------------------------------------------
-# Make all of the test programs
-#----------------------------------------------------------------------
-programs:
-	find . -type d -depth 1 | xargs -J % find % \
-		-name Makefile \
-		-exec echo \; \
-		-exec echo make -f '{}' \; \
-		-execdir make \;
-
-#----------------------------------------------------------------------
-# Clean all of the test programs
-#----------------------------------------------------------------------
-clean::
-	find . -type d -depth 1 | xargs -J % find % \
-		-name Makefile \
-		-exec echo \; \
-		-exec echo make -f '{}' clean \; \
-		-execdir make clean \;
-
-#----------------------------------------------------------------------
-# Run the tests
-#----------------------------------------------------------------------
-check-local::
-	rm -rf lldb-test-traces
-	python $(PROJ_SRC_DIR)/dotest.py --executable $(ToolDir)/lldb -q -s lldb-test-traces -u CXXFLAGS -u CFLAGS -C $(subst ccache,,$(CC))




More information about the lldb-commits mailing list