Skip to content

Commit

Permalink
test: rename common.ddCommand()
Browse files Browse the repository at this point in the history
Change common.ddCommand() to common.createZeroFilledFile().

Backport-PR-URL: #23630
PR-URL: #23411
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: George Adams <george.adams@uk.ibm.com>
  • Loading branch information
Trott authored and targos committed Oct 13, 2018
1 parent bb4da05 commit 8def037
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test/common/README.md
Expand Up @@ -52,7 +52,7 @@ symlinks
([SeCreateSymbolicLinkPrivilege](https://msdn.microsoft.com/en-us/library/windows/desktop/bb530716(v=vs.85).aspx)).
On non-Windows platforms, this always returns `true`.

### ddCommand(filename)
### createZeroFilledFile(filename)

Creates a 10 MB file of all null characters.

Expand Down
4 changes: 2 additions & 2 deletions test/common/index.js
Expand Up @@ -173,7 +173,7 @@ function childShouldThrowAndAbort() {
});
}

function ddCommand(filename) {
function createZeroFilledFile(filename) {
const fd = fs.openSync(filename, 'w');
fs.ftruncateSync(fd, 10 * 1024 * 1024);
fs.closeSync(fd);
Expand Down Expand Up @@ -696,7 +696,7 @@ module.exports = {
busyLoop,
canCreateSymLink,
childShouldThrowAndAbort,
ddCommand,
createZeroFilledFile,
disableCrashOnUnhandledRejection,
enoughTestCpu,
enoughTestMem,
Expand Down
4 changes: 2 additions & 2 deletions test/common/index.mjs
Expand Up @@ -22,7 +22,7 @@ const {
PIPE,
hasIPv6,
childShouldThrowAndAbort,
ddCommand,
createZeroFilledFile,
platformTimeout,
allowGlobals,
mustCall,
Expand Down Expand Up @@ -71,7 +71,7 @@ export {
PIPE,
hasIPv6,
childShouldThrowAndAbort,
ddCommand,
createZeroFilledFile,
platformTimeout,
allowGlobals,
mustCall,
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-http-chunk-problem.js
Expand Up @@ -63,7 +63,7 @@ function executeRequest(cb) {

tmpdir.refresh();

common.ddCommand(filename);
common.createZeroFilledFile(filename);

server = http.createServer(function(req, res) {
res.writeHead(200);
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-pipe-file-to-http.js
Expand Up @@ -56,7 +56,7 @@ const server = http.createServer(function(req, res) {
server.listen(0);

server.on('listening', function() {
common.ddCommand(filename);
common.createZeroFilledFile(filename);
makeRequest();
});

Expand Down

0 comments on commit 8def037

Please sign in to comment.