diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-14 12:11:06 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-14 12:11:06 +0000 |
commit | 4d034f3477d698e3f1c760af1dd8ae8f75144b3b (patch) | |
tree | 9d981ef6c525ed2fd747166e5fea8dd251d1aa3b | |
parent | 5360e77db8aa0e40c7c79cee74f91634eefa8576 (diff) |
* 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
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | enc/us_ascii.c | 4 | ||||
-rwxr-xr-x | rubytest.rb | 2 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +Mon Jan 14 21:10:02 2008 Yukihiro Matsumoto <[email protected]> + + * 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 <[email protected]> * thread.c: clear thread structure. diff --git a/enc/us_ascii.c b/enc/us_ascii.c index 165932d1ae..8a18966ee3 100644 --- a/enc/us_ascii.c +++ b/enc/us_ascii.c @@ -27,5 +27,5 @@ OnigEncodingDefine(us_ascii, US_ASCII) = { onigenc_always_true_is_allowed_reverse_match }; ENC_ALIAS("ASCII", "US-ASCII"); -ENC_ALIAS("ANSI_X3.4-1986", "US-ASCII"); -ENC_ALIAS("646", "US-ASCII");
\ No newline at end of file +ENC_ALIAS("ANSI_X3.4-1968", "US-ASCII"); +ENC_ALIAS("646", "US-ASCII"); diff --git a/rubytest.rb b/rubytest.rb index fb836735f5..eecc588256 100755 --- a/rubytest.rb +++ b/rubytest.rb @@ -37,7 +37,7 @@ $stderr.reopen($stdout) error = '' 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/ print "\ntest succeeded\n" exit true |