diff options
author | Pavel Labath <pavel@labath.sk> | 2019-09-05 07:38:55 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-09-05 07:38:55 +0000 |
commit | 35dfb2e8d748b11c8a95c132a0d4a031b77da394 (patch) | |
tree | d8bf1a2d7c7985c43dd381ce8e788010fb5c6246 /lldb/packages/Python/lldbsuite | |
parent | 45e3ce8d7653f80e8c5ff7e306112c35544e3d4b (diff) | |
download | bcm5719-llvm-35dfb2e8d748b11c8a95c132a0d4a031b77da394.tar.gz bcm5719-llvm-35dfb2e8d748b11c8a95c132a0d4a031b77da394.zip |
[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.
llvm-svn: 371020
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/Makefile | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/Makefile b/lldb/packages/Python/lldbsuite/test/Makefile deleted file mode 100644 index c662fd1af00..00000000000 --- a/lldb/packages/Python/lldbsuite/test/Makefile +++ /dev/null @@ -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)) |