summaryrefslogtreecommitdiff
path: root/test/simple/test-fs-write-sync.js
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headersRyan Dahl2011-03-141-0/+21
|
* GJSLint all simple tests exclude http-*, url, pathOleg Efimov2010-12-051-2/+2
|
* Fix global leaksRyan Dahl2010-12-041-9/+8
|
* Write write.txt into the tmpdirRyan Dahl2010-10-221-1/+1
|
* detect 0 length fs writes with testsMarco Rogers2010-08-161-0/+4
|
* fs.writeSync should return bytes writtenRyan Dahl2010-07-161-1/+2
|
* Update tests to work with module contextsRyan Dahl2010-07-151-2/+3
|
* Improve fs.write testsRyan Dahl2010-06-101-7/+11
|
* Deprecate string interface for fs.write()Felix Geisendörfer2010-05-191-0/+12
This patch makes buffers the preferred input for fs.write() and fs.writeSync(). The old string interface is still supported by converting strings to buffers dynamically. This allows to remove the C++ code for string handling which is also part of this patch.