Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-12 | Add kernel/test/code_SUITE:upgrade | Sverker Eriksson | |
For now we only test beam as hipe doesn't pass the test | |||
2010-12-01 | Mend on_load_embedded testcase which did not handle windows links | Patrik Nyblom | |
2010-10-20 | Fix hang in on_load handlers in embedded mode | Björn Gustavsson | |
In embedded mode, all on_load handlers will be called after loading all modules but before starting any servers. Therefore, if an on_load handler calls any function in the code module that calls the code server (such as code:priv_dir/1), there will be a deadlock because the code server has not yet been started. Fix this problem by invoking the on_load handlers after having started most servers in the kernel application. | |||
2010-02-06 | Add tests for code:clash/0 | Tuncer Ayaz | |
Add first batch of tests for code:clash/0. Signed-off-by: Tuncer Ayaz <[email protected]> | |||
2009-12-13 | Test on_load functions that don't return 'ok' | Björn Gustavsson | |
2009-12-13 | Change the expected return value for on_load functions | Björn Gustavsson | |
An on_load function is supposed to return 'true' to indicate that the module should be loaded, and 'false' if it should be unloaded. But returning any other term, as well as causing an exception, will also unload the module. Since we don't like boolean values mixed with other values, change the expected return value as follows: * If 'ok' is returned, the module will remain loaded and become callable. * If any other value is returned (or an exception is generated), the module will be unloaded. Also, if the returned value is not an atom, send a warning message to the error_logger (using error_logger:warning_msg/2). The new interpretation of the return value means that an on_load function can now directly return the return value from erlang:load_nif/2. | |||
2009-11-20 | The R13B03 release.OTP_R13B03 | Erlang/OTP | |