diff options
author | Björn Gustavsson <[email protected]> | 2010-04-03 09:59:22 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-04-30 06:16:01 +0200 |
commit | ccc18513ab58762d2ba857ff88b22f6633afa4af (patch) | |
tree | 3bfc1ff666a307e9cd9eb5a4836af11bf90b3627 /lib/test_server/src/ts_erl_config.erl | |
parent | b328564bfe321c2df597c77fea57566ee8d00f2b (diff) | |
download | otp-ccc18513ab58762d2ba857ff88b22f6633afa4af.tar.gz otp-ccc18513ab58762d2ba857ff88b22f6633afa4af.tar.bz2 otp-ccc18513ab58762d2ba857ff88b22f6633afa4af.zip |
test_server: Remove stray support for OSE/Delta
Remove code supporting testing on OSE/Delta.
Some cross-testing support only used by OSE/Delta is kept
(see the mention of OSE in test_server_internal.hrl), because
it could presumably be useful in the future if we are to test
some other embedded system.
Diffstat (limited to 'lib/test_server/src/ts_erl_config.erl')
-rw-r--r-- | lib/test_server/src/ts_erl_config.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/test_server/src/ts_erl_config.erl b/lib/test_server/src/ts_erl_config.erl index 4fc46fc5d6..017629826e 100644 --- a/lib/test_server/src/ts_erl_config.erl +++ b/lib/test_server/src/ts_erl_config.erl @@ -161,7 +161,6 @@ system_include(Root, Vars) -> case ts_lib:var(os, Vars) of "Windows" ++ _T -> "sys/win32"; "VxWorks" -> "sys.vxworks"; - "OSE" -> "sys/ose"; _ -> "sys/unix" end, " -I" ++ filename:nativename(filename:join([Root, "erts", "emulator", SysDir])). @@ -219,7 +218,7 @@ erl_interface(Vars,OsType) -> {unix,_} -> "-lpthread"; _ -> - "" % VxWorks or OSE + "" % VxWorks end, CrossCompile = case OsType of vxworks -> "true"; |