summaryrefslogtreecommitdiff
path: root/lib/common_test/src
diff options
context:
space:
mode:
authorBen Adams <Ben@MessageMap.IO>2022-05-29 18:12:09 +0000
committerBen Adams <Ben@MessageMap.IO>2022-06-01 17:33:07 +0000
commit8bd699ba4695c68750f1887b87a56b6ede9e22e9 (patch)
treefb50d27d7b75f883ae44393b5ecd6551c42220ef /lib/common_test/src
parent873912bf8ab4def4a23dedb55389a374381422b8 (diff)
downloaderlang-8bd699ba4695c68750f1887b87a56b6ede9e22e9.tar.gz
5719 - Adding Stacktrace to thrown
- For Common_tests: Added to Match Results for thrown and not hard coded to Content of stacktrace
Diffstat (limited to 'lib/common_test/src')
-rw-r--r--lib/common_test/src/test_server.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/test_server.erl b/lib/common_test/src/test_server.erl
index 6c383b04d0..aba1078bd1 100644
--- a/lib/common_test/src/test_server.erl
+++ b/lib/common_test/src/test_server.erl
@@ -1789,7 +1789,7 @@ ts_tc(M, F, A) ->
set_loc(Stk),
case Type of
throw ->
- {failed,{thrown,Reason}};
+ {failed,{thrown,{Reason,Stk}}};
error ->
{'EXIT',{Reason,Stk}};
exit ->