aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/hipe_SUITE_data/trycatch_3.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-05-04 15:35:06 +0200
committerBjörn Gustavsson <[email protected]>2017-05-05 09:59:28 +0200
commit6962098f2ff7dcff5ce46364898815c685d0f0b8 (patch)
tree49251d9de51c5df81c062eeccbb0cd0bc57a1aad /erts/emulator/test/hipe_SUITE_data/trycatch_3.erl
parent4261ee2caae48ad7e215144c5abbfd34fffb35e5 (diff)
downloadotp-6962098f2ff7dcff5ce46364898815c685d0f0b8.tar.gz
otp-6962098f2ff7dcff5ce46364898815c685d0f0b8.tar.bz2
otp-6962098f2ff7dcff5ce46364898815c685d0f0b8.zip
Extend hipe_SUITE to test exceptions and try/catch
Diffstat (limited to 'erts/emulator/test/hipe_SUITE_data/trycatch_3.erl')
-rw-r--r--erts/emulator/test/hipe_SUITE_data/trycatch_3.erl9
1 files changed, 9 insertions, 0 deletions
diff --git a/erts/emulator/test/hipe_SUITE_data/trycatch_3.erl b/erts/emulator/test/hipe_SUITE_data/trycatch_3.erl
new file mode 100644
index 0000000000..578fa0e87e
--- /dev/null
+++ b/erts/emulator/test/hipe_SUITE_data/trycatch_3.erl
@@ -0,0 +1,9 @@
+-module(trycatch_3).
+-export([three/1]).
+
+three({error,Term}) ->
+ error(Term);
+three({throw,Term}) ->
+ throw(Term);
+three({exit,Term}) ->
+ exit(Term).