mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
501 B
23 lines
501 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const file = path.join(common.fixturesDir, 'a.js');
|
|
|
|
fs.open(file, 'a', 0o777, common.mustCall(function(err, fd) {
|
|
assert.ifError(err);
|
|
|
|
fs.fdatasyncSync(fd);
|
|
|
|
fs.fsyncSync(fd);
|
|
|
|
fs.fdatasync(fd, common.mustCall(function(err) {
|
|
assert.ifError(err);
|
|
fs.fsync(fd, common.mustCall(function(err) {
|
|
assert.ifError(err);
|
|
}));
|
|
}));
|
|
}));
|
|
|