aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test_server/src/ts_erl_config.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2011-07-14 16:10:31 +0200
committerPeter Andersson <[email protected]>2011-09-23 12:24:54 +0200
commit8618bb8eab726ab5652b40751bdca928b49eca7f (patch)
treec22a3121c8ef9153ad6e97518f9325b0db708e2b /lib/test_server/src/ts_erl_config.erl
parent021b0dcb2a3a86ec0e07b0de8dc7cde9be0924ba (diff)
downloadotp-8618bb8eab726ab5652b40751bdca928b49eca7f.tar.gz
otp-8618bb8eab726ab5652b40751bdca928b49eca7f.tar.bz2
otp-8618bb8eab726ab5652b40751bdca928b49eca7f.zip
Fix incorrect module name arg to FW:end_tc/3
OTP-9379
Diffstat (limited to 'lib/test_server/src/ts_erl_config.erl')
-rw-r--r--lib/test_server/src/ts_erl_config.erl5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/test_server/src/ts_erl_config.erl b/lib/test_server/src/ts_erl_config.erl
index 640c8ddc9f..3b41f90d55 100644
--- a/lib/test_server/src/ts_erl_config.erl
+++ b/lib/test_server/src/ts_erl_config.erl
@@ -222,7 +222,6 @@ erl_interface(Vars,OsType) ->
end,
CrossCompile = case OsType of
vxworks -> "true";
- ose -> "true";
_ -> "false"
end,
[{erl_interface_libpath, filename:nativename(LibPath)},
@@ -329,8 +328,6 @@ sock_libraries({win32, _}) ->
sock_libraries({unix, _}) ->
""; % Included in general libraries if needed.
sock_libraries(vxworks) ->
- "";
-sock_libraries(ose) ->
"".
link_library(LibName,{win32, _}) ->
@@ -339,8 +336,6 @@ link_library(LibName,{unix, _}) ->
"lib" ++ LibName ++ ".a";
link_library(LibName,vxworks) ->
"lib" ++ LibName ++ ".a";
-link_library(_LibName,ose) ->
- "";
link_library(_LibName,_Other) ->
exit({link_library, not_supported}).