aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/test/dbg_ui_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-03-02 06:33:45 +0100
committerBjörn Gustavsson <[email protected]>2016-04-18 08:27:49 +0200
commit37348d31616fa55130eead33f08a50141b355151 (patch)
tree4d29cfcf639241c7a56ac4dfad7a3ccfdcaa0012 /lib/debugger/test/dbg_ui_SUITE.erl
parente51364ed716fe373a0f4c6a02ed5d9740428265f (diff)
downloadotp-37348d31616fa55130eead33f08a50141b355151.tar.gz
otp-37348d31616fa55130eead33f08a50141b355151.tar.bz2
otp-37348d31616fa55130eead33f08a50141b355151.zip
Replace "%" with "%%" at the beginning of a line
We want to re-ident the source files after having taken out all ?line macros. When re-indenting using Emacs, it's important that comments that should be at the beginning of a line (or follow the indentation of statements around it) must start with "%%".
Diffstat (limited to 'lib/debugger/test/dbg_ui_SUITE.erl')
-rw-r--r--lib/debugger/test/dbg_ui_SUITE.erl16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/debugger/test/dbg_ui_SUITE.erl b/lib/debugger/test/dbg_ui_SUITE.erl
index 626e49f3ef..e50382fb33 100644
--- a/lib/debugger/test/dbg_ui_SUITE.erl
+++ b/lib/debugger/test/dbg_ui_SUITE.erl
@@ -25,14 +25,14 @@
-include_lib("common_test/include/ct.hrl").
-% Test server specific exports
+%% Test server specific exports
-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,
init_per_group/2,end_per_group/2]).
-% Test cases must be exported.
+%% Test cases must be exported.
-export ([dbg_ui/1]).
-% Manual test suites/cases exports
+%% Manual test suites/cases exports
-export([start1/1, interpret1/1, quit1/1,
start2/1, interpret2/1, break2/1, options2/1, quit2/1,
interpret3/1, all_step3/1,all_next3/1,save3/1,restore3/1,finish3/1,
@@ -83,11 +83,11 @@ dbg_ui (_Config) ->
false ->
{skipped,"No display"};
Other when is_list(Other) ->
-% ?line {ok, Pid} = debugger:start (),
-% ?line ok = is_pid (Pid),
-% ?line true = erlang:is_process_alive(Pid),
-% ?line ok = debugger:stop(),
-% ?line false = erlang:is_process_alive(Pid)
+%% ?line {ok, Pid} = debugger:start (),
+%% ?line ok = is_pid (Pid),
+%% ?line true = erlang:is_process_alive(Pid),
+%% ?line ok = debugger:stop(),
+%% ?line false = erlang:is_process_alive(Pid)
{skipped,"Gunilla: Workaround"}
end.