aboutsummaryrefslogtreecommitdiff
path: root/test/common.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-08-09 18:05:50 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-08-09 18:05:57 -0700
commit3ce4adf3c6bd73fcd8de93a5bbaf8bdb321d43af (patch)
tree07e500991a2090a4d439a962ac5ca686dd90c90c /test/common.js
parentb3bc009a89d605ab89d28857d19fea0975040b58 (diff)
downloadandroid-node-v8-3ce4adf3c6bd73fcd8de93a5bbaf8bdb321d43af.tar.gz
android-node-v8-3ce4adf3c6bd73fcd8de93a5bbaf8bdb321d43af.tar.bz2
android-node-v8-3ce4adf3c6bd73fcd8de93a5bbaf8bdb321d43af.zip
Remove unnecessary line
Diffstat (limited to 'test/common.js')
-rw-r--r--test/common.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/common.js b/test/common.js
index aea21b2cc2..2486724040 100644
--- a/test/common.js
+++ b/test/common.js
@@ -56,7 +56,6 @@ exports.ddCommand = function(filename, kilobytes) {
if (process.platform == 'win32') {
return 'fsutil.exe file createnew "' + filename + '" ' + (kilobytes * 1024);
} else {
- var blocks = Integer(size / 1024);
return 'dd if=/dev/zero of="' + filename + '" bs=1024 count=' + kilobytes;
}
};