diff options
author | Anders Svensson <[email protected]> | 2013-01-23 16:55:23 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2013-01-23 17:00:23 +0100 |
commit | 9a5673afee56d9fcee84232eea6ce2dbe82a7493 (patch) | |
tree | cdd308c43f4552593ed394e89075b0a80e8f2295 /lib | |
parent | aa10e3dd8b537149c9859ce03e56f3a02ab08872 (diff) | |
download | otp-9a5673afee56d9fcee84232eea6ce2dbe82a7493.tar.gz otp-9a5673afee56d9fcee84232eea6ce2dbe82a7493.tar.bz2 otp-9a5673afee56d9fcee84232eea6ce2dbe82a7493.zip |
Test makefile tweak
Diffstat (limited to 'lib')
-rw-r--r-- | lib/diameter/test/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/diameter/test/Makefile b/lib/diameter/test/Makefile index 866d135bd9..aa4b7eaeb1 100644 --- a/lib/diameter/test/Makefile +++ b/lib/diameter/test/Makefile @@ -1,7 +1,7 @@ # # %CopyrightBegin% # -# Copyright Ericsson AB 2010-2012. All Rights Reserved. +# Copyright Ericsson AB 2010-2013. All Rights Reserved. # # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in @@ -62,17 +62,15 @@ ERL_COMPILE_FLAGS += +warn_export_vars \ # Targets # ---------------------------------------------------- +all debug opt: $(TARGET_FILES) + # Require success ... -all: opt +run: $(SUITES) # ... or not. any: opt $(MAKE) -i $(SUITES) -run: $(SUITES) - -debug opt: $(TARGET_FILES) - clean: rm -f $(TARGET_FILES) rm -f depend.mk @@ -101,7 +99,10 @@ help: @echo " Compile all test suites." @echo @echo " run:" - @echo " Compile and run all test suites." + @echo " Compile and run all test suites, stop on failure." + @echo + @echo " any:" + @echo " Compile and run all test suites, ignore any failures." @echo @echo " $(SUITES):" @echo " Compile and run a specific test suite." |