diff options
author | Lukas Larsson <[email protected]> | 2017-07-18 14:30:55 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-07-18 14:30:55 +0200 |
commit | aa8df5238a20a539bc90deb68aa39050197ba725 (patch) | |
tree | bf5108a9a9304b8377b9e5a922274daef6f0ba20 /lib/common_test/test_server/ts_run.erl | |
parent | de5cfabdad61d45a112d95e24ac44e3f51a4bd18 (diff) | |
parent | 7b5a1a7e787570ff13805a150e4c7c13bda8b0a6 (diff) | |
download | otp-aa8df5238a20a539bc90deb68aa39050197ba725.tar.gz otp-aa8df5238a20a539bc90deb68aa39050197ba725.tar.bz2 otp-aa8df5238a20a539bc90deb68aa39050197ba725.zip |
lukas/erts/remove-non-smp/OTP-14518
Remove support for the non-smp emulators
Diffstat (limited to 'lib/common_test/test_server/ts_run.erl')
-rw-r--r-- | lib/common_test/test_server/ts_run.erl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/common_test/test_server/ts_run.erl b/lib/common_test/test_server/ts_run.erl index 82ae44ec06..ec4a54b249 100644 --- a/lib/common_test/test_server/ts_run.erl +++ b/lib/common_test/test_server/ts_run.erl @@ -204,11 +204,7 @@ make_command(Vars, Spec, State) -> _ -> ok end, - "cerl -valgrind" ++ - case erlang:system_info(smp_support) of - true -> " -smp"; - false -> "" - end + "cerl -valgrind" end, Naming = case ts_lib:var(longnames, Vars) of |