aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/hipe_SUITE_data/trycatch_2.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_2.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_2.erl')
-rw-r--r--erts/emulator/test/hipe_SUITE_data/trycatch_2.erl10
1 files changed, 10 insertions, 0 deletions
diff --git a/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl b/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl
new file mode 100644
index 0000000000..ffac420197
--- /dev/null
+++ b/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl
@@ -0,0 +1,10 @@
+-module(trycatch_2).
+-export([two/1]).
+
+two(Term) ->
+ Res = trycatch_3:three(Term),
+ foo(),
+ Res.
+
+foo() ->
+ ok.