diff options
author | Siri Hansen <[email protected]> | 2014-02-24 12:18:27 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2014-02-24 12:18:27 +0100 |
commit | 1ca1d9d83295e5bd53cc29997ece8e34b19cdf22 (patch) | |
tree | f9346997cd563407c00808ca6c0ef80466011936 | |
parent | d9ebb210d5299306945c68e43ce6642f9a2d1617 (diff) | |
download | otp-1ca1d9d83295e5bd53cc29997ece8e34b19cdf22.tar.gz otp-1ca1d9d83295e5bd53cc29997ece8e34b19cdf22.tar.bz2 otp-1ca1d9d83295e5bd53cc29997ece8e34b19cdf22.zip |
Include more applications in upgrade_SUITE
Many appup files are now corrected and the applications can be
included in the upgrade suite.
-rw-r--r-- | erts/test/upgrade_SUITE.erl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/erts/test/upgrade_SUITE.erl b/erts/test/upgrade_SUITE.erl index bcdac2a66e..ee84a5dfd7 100644 --- a/erts/test/upgrade_SUITE.erl +++ b/erts/test/upgrade_SUITE.erl @@ -31,12 +31,14 @@ cosProperty,cosTime,cosTransactions,erts,ic,netconf,orber, safe]). -%% Applications that are excluded from this test because they don't -%% have useful appup files. +%% Applications that are excluded from this test because their appup +%% file don't support the upgrade. +%% In specific: +%% - hipe does not support any upgrade at all +%% - dialyzer requires hipe (in the .app file) +%% - typer requires hipe (in the .app file) -define(appup_exclude, - [asn1,common_test,compiler,crypto,dialyzer,edoc,eldap,eunit, - hipe,inets,observer,odbc,os_mon,public_key,runtime_tools, - ssh,ssl,syntax_tools,test_server,tools,typer,wx,xmerl]). + [dialyzer,hipe,typer]). init_per_suite(Config) -> %% Check that a real release is running, not e.g. cerl |