Skip to content

Commit

Permalink
[crashdump_viewer] Add case clause for testing with dump from R14B
Browse files Browse the repository at this point in the history
  • Loading branch information
sirihansen committed Mar 30, 2012
1 parent 1d1d445 commit 8282516
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions 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
Expand Down Expand Up @@ -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}),
Expand Down Expand Up @@ -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.

Expand All @@ -734,6 +735,6 @@ compat_rel(Rel) ->
r11b -> "+R11 ";
r12b -> "+R12 ";
r13b -> "+R13 ";
r14b -> "+R13 ";
r14b -> "+R14 ";
current -> ""
end.

0 comments on commit 8282516

Please sign in to comment.