mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enc/us_ascii.c: wrong alias name: ANSI_X3.4-1986.
* rubytest.rb: add -I#{srcdir} to load encoding DLL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5360e77db8
commit
4d034f3477
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Mon Jan 14 21:10:02 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* enc/us_ascii.c: wrong alias name: ANSI_X3.4-1986.
|
||||||
|
|
||||||
|
* rubytest.rb: add -I#{srcdir} to load encoding DLL.
|
||||||
|
|
||||||
Mon Jan 14 18:53:58 2008 Koichi Sasada <ko1@atdot.net>
|
Mon Jan 14 18:53:58 2008 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* thread.c: clear thread structure.
|
* thread.c: clear thread structure.
|
||||||
|
|
|
@ -27,5 +27,5 @@ OnigEncodingDefine(us_ascii, US_ASCII) = {
|
||||||
onigenc_always_true_is_allowed_reverse_match
|
onigenc_always_true_is_allowed_reverse_match
|
||||||
};
|
};
|
||||||
ENC_ALIAS("ASCII", "US-ASCII");
|
ENC_ALIAS("ASCII", "US-ASCII");
|
||||||
ENC_ALIAS("ANSI_X3.4-1986", "US-ASCII");
|
ENC_ALIAS("ANSI_X3.4-1968", "US-ASCII");
|
||||||
ENC_ALIAS("646", "US-ASCII");
|
ENC_ALIAS("646", "US-ASCII");
|
|
@ -37,7 +37,7 @@ $stderr.reopen($stdout)
|
||||||
error = ''
|
error = ''
|
||||||
|
|
||||||
srcdir = File.dirname(__FILE__)
|
srcdir = File.dirname(__FILE__)
|
||||||
`#{ruby} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each_line do |line|
|
`#{ruby} -I#{srcdir} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each_line do |line|
|
||||||
if line =~ /^end of test/
|
if line =~ /^end of test/
|
||||||
print "\ntest succeeded\n"
|
print "\ntest succeeded\n"
|
||||||
exit true
|
exit true
|
||||||
|
|
Loading…
Reference in a new issue