aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-12 12:41:08 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-12 12:41:08 +0000
commit640e0a33b7a198be030b4080e32404a319f4c468 (patch)
tree7880b8097b0cffcd16f6b7a2673af96d7d1591ed /test
parent0dcc1f0dfe1e02e882f5f42c0c8a20cf371737e2 (diff)
downloadruby-640e0a33b7a198be030b4080e32404a319f4c468.tar.gz
* process.c (rb_exec_fillarg): treat '=' character as an meta
character to detect assignments preceding command name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index b3ecc420ed..943ffc77d7 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1433,4 +1433,11 @@ class TestProcess < Test::Unit::TestCase
}
end
+ def test_sh_env
+ IO.popen("foofoo=barbar env") {|f|
+ lines = f.readlines
+ assert_operator(lines, :include?, "foofoo=barbar\n")
+ }
+ end if File.executable?("/bin/sh")
+
end