aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2012-03-30 12:22:57 +0200
committerSiri Hansen <[email protected]>2012-03-30 12:22:57 +0200
commitf2ea92776a292ff07601e6bbab7663667b50efad (patch)
tree90fba9e0f19a7f2b61e7f19b02c1b5253e87818d
parentac7d767d5694a03ee7da1c506e4a6b4020723e26 (diff)
parent82825164987b56fa19185c453caaecb1d96ed3d0 (diff)
downloadotp-f2ea92776a292ff07601e6bbab7663667b50efad.tar.gz
otp-f2ea92776a292ff07601e6bbab7663667b50efad.tar.bz2
otp-f2ea92776a292ff07601e6bbab7663667b50efad.zip
Merge branch 'siri/crashdump_viewer/create_r14b_dump/OTP-10032' into maint
* siri/crashdump_viewer/create_r14b_dump/OTP-10032: [crashdump_viewer] Add case clause for testing with dump from R14B
-rw-r--r--lib/observer/test/crashdump_viewer_SUITE.erl7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/observer/test/crashdump_viewer_SUITE.erl b/lib/observer/test/crashdump_viewer_SUITE.erl
index 79ece7edf5..5bbce9d076 100644
--- a/lib/observer/test/crashdump_viewer_SUITE.erl
+++ b/lib/observer/test/crashdump_viewer_SUITE.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2003-2011. All Rights Reserved.
+%% Copyright Ericsson AB 2003-2012. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -318,7 +318,7 @@ browse_file(Port,File) ->
%% The page where a filename can be entered
title(Port,"read_file_frame","Read File"),
-
+
%% Load a file
Url = "http://localhost:"++Port++"/cdv_erl/crashdump_viewer/read_file",
Html = request_sync(post,{Url,[],[],"path="++File}),
@@ -711,6 +711,7 @@ rel_opt(Rel) ->
r11b -> [{erl,[{release,"r11b_patched"}]}];
r12b -> [{erl,[{release,"r12b_patched"}]}];
r13b -> [{erl,[{release,"r13b_patched"}]}];
+ r14b -> [{erl,[{release,"r14b_latest"}]}]; %naming convention changed
current -> []
end.
@@ -734,6 +735,6 @@ compat_rel(Rel) ->
r11b -> "+R11 ";
r12b -> "+R12 ";
r13b -> "+R13 ";
- r14b -> "+R13 ";
+ r14b -> "+R14 ";
current -> ""
end.