diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-07-08 15:36:07 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-07-11 18:41:43 +0200 |
commit | 30b54775919a16fc3545fe243a7d4531fac48293 (patch) | |
tree | d39760ffbc9ddfcf818b4493b11a897278e94630 /lib | |
parent | 31b20cac498b98d40ed2bb15bb5259cb3c33a422 (diff) | |
download | otp-30b54775919a16fc3545fe243a7d4531fac48293.tar.gz otp-30b54775919a16fc3545fe243a7d4531fac48293.tar.bz2 otp-30b54775919a16fc3545fe243a7d4531fac48293.zip |
Fix tests for erts app-file
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kernel/test/code_SUITE.erl | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/lib/kernel/test/code_SUITE.erl b/lib/kernel/test/code_SUITE.erl index fc17db2745..94977a6ff6 100644 --- a/lib/kernel/test/code_SUITE.erl +++ b/lib/kernel/test/code_SUITE.erl @@ -1462,37 +1462,28 @@ create_big_boot(Config) -> % The following apps cannot be loaded % hipe .app references (or can reference) files that have no % corresponding beam file (if hipe is not enabled) -filter_app("hipe",_) -> - false; +filter_app("hipe",_) -> false; % Dialyzer and typer depends on hipe -filter_app("dialyzer",_) -> - false; -filter_app("typer",_) -> - false; +filter_app("dialyzer",_) -> false; +filter_app("typer",_) -> false; % Orber requires explicit configuration -filter_app("orber",_) -> - false; +filter_app("orber",_) -> false; % cos* depends on orber -filter_app("cos"++_,_) -> - false; +filter_app("cos"++_,_) -> false; % ic has a mod instruction in the app file but no corresponding start function -filter_app("ic",_) -> - false; +filter_app("ic",_) -> false; % Netconf has some dependency that I really do not understand (maybe like orber) -filter_app("netconf",_) -> - false; +filter_app("netconf",_) -> false; % Safe has the same kind of error in the .app file as ic -filter_app("safe",_) -> - false; +filter_app("safe",_) -> false; % Comte cannot be started in the "usual" way -filter_app("comte",_) -> - false; +filter_app("comte",_) -> false; % OS_mon does not find it's port program when running cerl -filter_app("os_mon",true) -> - false; +filter_app("os_mon",true) -> false; +% erts is not a "real" app either =/ +filter_app("erts",_) -> false; % Other apps should be OK. -filter_app(_,_) -> - true. +filter_app(_,_) -> true. create_big_script(Config,Local) -> ?line PrivDir = ?config(priv_dir, Config), ?line Name = filename:join(PrivDir,"full_script_test"), |