diff options
author | Björn Gustavsson <[email protected]> | 2010-03-16 15:51:39 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-22 18:18:13 +0100 |
commit | 2090739366a79a7a134d77cbe10813c5fc42906b (patch) | |
tree | b703a2c6394309f1a677ca3d89ced02ac8726f2c /lib | |
parent | 4767bed8cf7b2c8ce580d574bf03e3f72217e8a2 (diff) | |
download | otp-2090739366a79a7a134d77cbe10813c5fc42906b.tar.gz otp-2090739366a79a7a134d77cbe10813c5fc42906b.tar.bz2 otp-2090739366a79a7a134d77cbe10813c5fc42906b.zip |
test_server: Don't support communication with R11 nodes
Since R14 does not need to be compatible with any older Erlang
systems than R12, we no longer need to use the r11 compiler
option when compiling the test_server_node module.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/test_server/src/test_server_node.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/test_server/src/test_server_node.erl b/lib/test_server/src/test_server_node.erl index ddc89d50d4..047487e82d 100644 --- a/lib/test_server/src/test_server_node.erl +++ b/lib/test_server/src/test_server_node.erl @@ -17,15 +17,12 @@ %% %CopyrightEnd% %% -module(test_server_node). --compile(r11). %%% %%% The same compiled code for this module must be possible to load -%%% in R11B, R12B and later. To make that possible no bit syntax -%%% must be used. +%%% in R12B and later. %%% - %% Test Controller interface -export([is_release_available/1]). -export([start_remote_main_target/1,stop/1]). |