diff options
author | Lukas Larsson <[email protected]> | 2011-01-21 19:09:22 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:39:00 +0100 |
commit | f35da4a31a95501e76b803e871483f88a367bba5 (patch) | |
tree | f9fb4f1111bcf6bcb88dddd0be28106f8a5f81a1 /erts/emulator/test | |
parent | 1df38b2a16d604d6e850f3c95bb41744da3d19bd (diff) | |
download | otp-f35da4a31a95501e76b803e871483f88a367bba5.tar.gz otp-f35da4a31a95501e76b803e871483f88a367bba5.tar.bz2 otp-f35da4a31a95501e76b803e871483f88a367bba5.zip |
Update end_per_suite so that it does not crash on non-smp emulators
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/signal_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/signal_SUITE.erl b/erts/emulator/test/signal_SUITE.erl index 5503400da4..5db4f2eba5 100644 --- a/erts/emulator/test/signal_SUITE.erl +++ b/erts/emulator/test/signal_SUITE.erl @@ -66,7 +66,7 @@ init_per_suite(Config) -> end_per_suite(_Config) -> available_internal_state(true), - erts_debug:set_internal_state(not_running_optimization, true), + catch erts_debug:set_internal_state(not_running_optimization, true), available_internal_state(false). suite() -> [{suite_callbacks,[ts_install_scb]}]. |