diff options
author | Hans Bolinder <[email protected]> | 2013-03-12 14:24:44 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-03-18 16:26:35 +0100 |
commit | 4aca384fb03e29b4494831041de515362ed1af77 (patch) | |
tree | 7f661761d58765fcff7a0b7ad577593dc602b283 /lib/debugger/test/int_SUITE.erl | |
parent | 21c34f1ccf7045e6786484575e3e68639c42bc50 (diff) | |
download | otp-4aca384fb03e29b4494831041de515362ed1af77.tar.gz otp-4aca384fb03e29b4494831041de515362ed1af77.tar.bz2 otp-4aca384fb03e29b4494831041de515362ed1af77.zip |
Fix a test case
The application/module 'gs' is not available on all platforms.
Diffstat (limited to 'lib/debugger/test/int_SUITE.erl')
-rw-r--r-- | lib/debugger/test/int_SUITE.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/debugger/test/int_SUITE.erl b/lib/debugger/test/int_SUITE.erl index 6e9e81bc52..fc309acf9b 100644 --- a/lib/debugger/test/int_SUITE.erl +++ b/lib/debugger/test/int_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1998-2011. All Rights Reserved. +%% Copyright Ericsson AB 1998-2013. 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 @@ -273,7 +273,6 @@ interpretable(Config) when is_list(Config) -> %% {error, {app,App}} ?line {error, {app,_}} = int:interpretable(file), ?line {error, {app,_}} = int:interpretable(lists), - ?line {error, {app,_}} = int:interpretable(gs), ?line case int:interpretable(dbg_ieval) of {error, {app,_}} -> ok; |