aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-09-04 09:41:31 +0200
committerFredrik Gustafsson <[email protected]>2013-09-04 09:41:31 +0200
commit7dcd6b1ba9c10cb59253cf9c488106f11f8dc3a7 (patch)
tree4db11afed66c6588d96a0858ae74aafe2f853f97 /lib/erl_interface
parent3ab1980d6a0df1254e5a5d6a2e25c1296642b963 (diff)
parente5786b2ab837819b91b5c0cafd932bb8b00e8078 (diff)
downloadotp-7dcd6b1ba9c10cb59253cf9c488106f11f8dc3a7.tar.gz
otp-7dcd6b1ba9c10cb59253cf9c488106f11f8dc3a7.tar.bz2
otp-7dcd6b1ba9c10cb59253cf9c488106f11f8dc3a7.zip
Merge branch 'dotsimon/ei_decode_encode_SUITE_true/OTP-11289' into maint
* dotsimon/ei_decode_encode_SUITE_true/OTP-11289: Fix location of true binary under Mac OSX
Diffstat (limited to 'lib/erl_interface')
-rw-r--r--lib/erl_interface/test/ei_decode_encode_SUITE.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/erl_interface/test/ei_decode_encode_SUITE.erl b/lib/erl_interface/test/ei_decode_encode_SUITE.erl
index 2271278291..c7830f58f2 100644
--- a/lib/erl_interface/test/ei_decode_encode_SUITE.erl
+++ b/lib/erl_interface/test/ei_decode_encode_SUITE.erl
@@ -68,6 +68,8 @@ test_ei_decode_encode(Config) when is_list(Config) ->
Port = case os:type() of
{win32,_} ->
open_port({spawn,"sort"},[]);
+ {unix, darwin} ->
+ open_port({spawn,"/usr/bin/true"},[]);
_ ->
open_port({spawn,"/bin/true"},[])
end,