diff options
author | Siri Hansen <[email protected]> | 2012-03-19 15:54:30 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-03-19 15:54:30 +0100 |
commit | 844afaf366ad7a4f668a60e896d0ae3b9e5d850b (patch) | |
tree | 05838abebbb3c998abc41ff5f3430313fb23da7b /lib/reltool/test | |
parent | 20ef6a7d381b37d7c620f303a981a3a8b4e227a8 (diff) | |
download | otp-844afaf366ad7a4f668a60e896d0ae3b9e5d850b.tar.gz otp-844afaf366ad7a4f668a60e896d0ae3b9e5d850b.tar.bz2 otp-844afaf366ad7a4f668a60e896d0ae3b9e5d850b.zip |
[reltool] Fix GUI problems on Windows
The new warning list did not work on Windows. It could not display
tooltips for each warning and the popup window would always disappear
behind the main system window.
Also, column width did not occur well initially in list controls.
Diffstat (limited to 'lib/reltool/test')
-rw-r--r-- | lib/reltool/test/reltool_manual_gui_SUITE.erl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/reltool/test/reltool_manual_gui_SUITE.erl b/lib/reltool/test/reltool_manual_gui_SUITE.erl index 1ebee9fae1..0dcc5cbf15 100644 --- a/lib/reltool/test/reltool_manual_gui_SUITE.erl +++ b/lib/reltool/test/reltool_manual_gui_SUITE.erl @@ -97,14 +97,14 @@ config(Config) -> break("the warning text can be marked, copied and pasted", "close the popup with the close box on the top frame"), break("it disappears", - "select application a from 'Included' column and click red cross to " - "exclude it"), + "select application a from 'Included' column and click 'cross'-button " + "with to exclude it"), break("application a is moved to 'Excluded' column", - "select application tools from 'Excluded' column and click green V to " - "include it"), + "select application tools from 'Excluded' column and click " + "'tick'-button to include it"), break("application tools is moved to 'Included' column", "select application runtime_tools from 'Excluded' column and click " - "green V to include it"), + "'tick'-button to include it"), break("application runtime_tools is moved to 'Included' column", "undo"), @@ -171,7 +171,8 @@ config(Config) -> {ok,ServerPid} = reltool:get_server(SysPid), unlink(SysPid), break("the system window is still alive", - "terminate reltool by hitting 'Ctrl-q' when system window is active"), + "terminate reltool by hitting 'Ctrl-q' (linux) or clicking the " + "close box on the top fram when system window is active"), false = erlang:is_process_alive(SysPid), false = erlang:is_process_alive(ServerPid), |