diff options
author | Anders Svensson <[email protected]> | 2012-08-23 14:45:42 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2012-08-26 18:50:11 +0200 |
commit | c8cf385ec5d8b8e451aac064590860079b334f79 (patch) | |
tree | 0b0cac4326f6e4890d2f033303e6d575e118e89a /lib/diameter/test/Makefile | |
parent | 1ace7fbbb6fb7303bb7e4f41dda9c360f7b66ccd (diff) | |
download | otp-c8cf385ec5d8b8e451aac064590860079b334f79.tar.gz otp-c8cf385ec5d8b8e451aac064590860079b334f79.tar.bz2 otp-c8cf385ec5d8b8e451aac064590860079b334f79.zip |
Add any target to test/Makefile
To run all test suites but without stopping if one fails (like all).
Diffstat (limited to 'lib/diameter/test/Makefile')
-rw-r--r-- | lib/diameter/test/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/diameter/test/Makefile b/lib/diameter/test/Makefile index ab5b45ff3d..5203ac4854 100644 --- a/lib/diameter/test/Makefile +++ b/lib/diameter/test/Makefile @@ -67,8 +67,13 @@ ERL_COMPILE_FLAGS += +warn_export_vars \ # Targets # ---------------------------------------------------- +# Require success ... all: opt +# ... or not. +any: opt + $(MAKE) -i $(SUITES) + run: $(SUITES) debug opt: $(TARGET_FILES) @@ -113,7 +118,7 @@ help: @echo " Echo some relevant variables." @echo ======================================== -.PHONY: all run clean debug docs help info opt realclean +.PHONY: all any run clean debug docs help info opt realclean # ---------------------------------------------------- # Special Targets |