diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-07-17 19:15:09 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 20:22:54 +0200 |
commit | 1fc645451d1d32db120fae5bcefd4c6653ca4f41 (patch) | |
tree | de8bfe64d3229dd92f1d9378bc5e40d1234d2f5b /lib/test_server/src/ts_run.erl | |
parent | c6266995b9e007af4b48db8de1ddbaa7ced912fe (diff) | |
download | otp-1fc645451d1d32db120fae5bcefd4c6653ca4f41.tar.gz otp-1fc645451d1d32db120fae5bcefd4c6653ca4f41.tar.bz2 otp-1fc645451d1d32db120fae5bcefd4c6653ca4f41.zip |
test_server: Remove VxWorks
Diffstat (limited to 'lib/test_server/src/ts_run.erl')
-rw-r--r-- | lib/test_server/src/ts_run.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/test_server/src/ts_run.erl b/lib/test_server/src/ts_run.erl index a61028e4bc..5ce8e66660 100644 --- a/lib/test_server/src/ts_run.erl +++ b/lib/test_server/src/ts_run.erl @@ -157,7 +157,6 @@ get_config_files() -> [TSConfig | case os:type() of {unix,_} -> ["ts.unix.config"]; {win32,_} -> ["ts.win32.config"]; - vxworks -> ["ts.vxworks.config"]; _ -> [] end]. @@ -329,8 +328,7 @@ start_xterm(Command) -> path_separator() -> case os:type() of {win32, _} -> ";"; - {unix, _} -> ":"; - vxworks -> ":" + {unix, _} -> ":" end. |