mirror of
https://github.com/ruby/ruby.git
synced 2025-09-19 10:33:58 +02:00
* test/ruby/test_system.rb (TestSystem#test_system_at): use findstr
command instead of find command, because the latter is confusing another famous Unix command. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d7feebb4b3
commit
25a4c79279
2 changed files with 7 additions and 1 deletions
|
@ -103,7 +103,7 @@ class TestSystem < Test::Unit::TestCase
|
|||
tmp = open(tmpfilename, "w")
|
||||
tmp.print "foo\nbar\nbaz";
|
||||
tmp.close
|
||||
assert_match(/\n.*\nbar\nbaz\n/, `@@find "ba" #{tmpfilename.gsub("/", "\\")}`, testname);
|
||||
assert_match(/\Abar\nbaz\n?\z/, `@@findstr "ba" #{tmpfilename.gsub("/", "\\")}`, testname);
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue