diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-07-16 19:30:14 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 20:22:52 +0200 |
commit | eb510f38e842cb94d24ba8a5ab4a3833aa24428e (patch) | |
tree | b8ef6e673cbb4955f2d7610fa1414d11a0747485 /erts/emulator/test/trace_local_SUITE.erl | |
parent | ee6db186807adc034107ea380d847fc12d0237d9 (diff) | |
download | otp-eb510f38e842cb94d24ba8a5ab4a3833aa24428e.tar.gz otp-eb510f38e842cb94d24ba8a5ab4a3833aa24428e.tar.bz2 otp-eb510f38e842cb94d24ba8a5ab4a3833aa24428e.zip |
erts: Remove VxWorks from tests
Diffstat (limited to 'erts/emulator/test/trace_local_SUITE.erl')
-rw-r--r-- | erts/emulator/test/trace_local_SUITE.erl | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/erts/emulator/test/trace_local_SUITE.erl b/erts/emulator/test/trace_local_SUITE.erl index b238d5c630..54f8cc3c30 100644 --- a/erts/emulator/test/trace_local_SUITE.erl +++ b/erts/emulator/test/trace_local_SUITE.erl @@ -714,16 +714,10 @@ exception_test(Opts) -> ?line ok. exceptions() -> - ?line Ref = make_ref(), - ?line N = case os:type() of - vxworks -> - ?line 2000; % Limited memory on themachines, not actually - % VxWorks' fault /PaN - _ -> - ?line 200000 - end, - ?line LiL = seq(1, N-1, N), % Long Improper List - ?line LL = seq(1, N, []), % Long List + Ref = make_ref(), + N = 200000, + LiL = seq(1, N-1, N), % Long Improper List + LL = seq(1, N, []), % Long List [{{erlang,exit}, [done]}, {{erlang,error}, [1.0]}, {{erlang,error}, [Ref,[]]}, |