summaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)Author
2016-08-07Enable Fixnum optionksss
2016-08-07Enable option :in, :out, :errksss
2016-06-22update $? when IO object is closed. closes #58.Tomoyuki Sahara
2016-06-21Merge pull request #60 from drbrain/test_io_setup_failureTomoyuki Sahara
Test io setup failure
2016-06-21add IO#isatty and IO#tty?Tomoyuki Sahara
2016-05-12Create socket in /tmp for securityEric Hodel
Some systems do not allow UNIX sockets from arbitrary directories. Instead of trying to `#define SOCKET_PATH` correctly I assume the /tmp/ directory is accessible and use it.
2016-05-12Include reason in test failure messageEric Hodel
I am seeing this test fail in some environments but can't determine why. The extra information will help me determine the reason bind(2) is failing.
2015-12-08File::ALT_SEPARATOR is always defined (some string or nil).Tomoyuki Sahara
2015-12-08Fix for windows(mingw)takahashim
* File.expand_path: support drive letter and ALT_SEPARATOR * File.dirname: support ALT_SEPARATOR * File.basename: ditto. * IO.popen: raise NotImplementedError * IO.pipe: ditto. * `cmd`: ditto. * File#flock: ditto. * FileTest.pipe?: ditto. * FileTest.symlink?: ditto. * FileTest.socket?: ditto.
2015-12-02fix tests for Win: use binary modetakahashim
2015-12-02build on Win32takahashim
2015-11-24assert_nothing_raised is not available on mruby 1.0.0.Tomoyuki Sahara
2015-11-24Implement IO.pipeksss
2015-11-22add File.symlinktakahashim
2015-11-21add File.pathtakahashim
2015-10-20UT for IO#sysseek.Tomoyuki Sahara
2015-09-27add IO#rewindtakahashim
2015-09-27support IO#<<takahashim
2014-12-04IO.popen fd set close_on_exec flag by defaultksss
2014-12-04Opened fd should be set FD_CLOEXEC by defaultksss
2014-11-16Implement FileTest.sizeksss
- File.size delegate to FileTest.size - File.size more faster by reading i-node value
2014-07-29add IO#sync and IO#sync=Tomoyuki Sahara
2014-07-09delete debug messagesdreamedge
2014-07-08Add IO#close_on_exec=dreamedge
and a test on test/io.rb
2014-06-19IO#read(0) should return "" immediately. fixes iij/mruby-socket#13.Tomoyuki Sahara
2014-04-21IO.for_fd can be written in Ruby.Tomoyuki Sahara
2014-04-21more tests.Tomoyuki Sahara
2014-04-18IO#syswrite should raise an error if it's not opened for writing.Tomoyuki Sahara
2014-04-17io.write("") -> 0Tomoyuki Sahara
2014-04-05Don't ignore the return value of symlink().Masaki Muranaka
2014-03-26nonexistent test fixes (for travis-ci)Akira Yumiyama
2014-03-26IO.close should be IO._sysclose. closes #13.Tomoyuki Sahara
2014-02-25add IO.readTomoyuki Sahara
2013-11-16Try GC when Too many open files (revert a part of 1e8097a).Tomoyuki Sahara
2013-11-16test for #6.Tomoyuki Sahara
2013-10-09fix typo...Tomoyuki Sahara
2013-10-03fix RSTRING_PTR usage.Tomoyuki Sahara
2013-09-30add File#flock.Tomoyuki Sahara
2013-09-26remove duplicated white spaces.Tomoyuki Sahara
2013-09-25Catch up with API changes on mrb_intern() -> mrb_intern_cstr()Paolo Bosetti
2013-08-30use array parameter on IO.open.Tomoyuki Sahara
2013-08-23add `cmd` (command output expression).Tomoyuki Sahara
2013-08-08tests for File.socket? and File.symlink?Tomoyuki Sahara
2013-05-12Use mkstemp instead of mktemp.Akira Yumiyama
2013-04-27put MRB_ prefix before ARGS_XXX macrosAkira Yumiyama
2013-04-07add File.expand_pathAkira Yumiyama
2013-04-01initial commitAkira Yumiyama