Skip to content

Commit

Permalink
test: remove extra console output from test-os.js
Browse files Browse the repository at this point in the history
PR-URL: nodejs#12654
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
  • Loading branch information
jasnell authored and Olivier Martin committed May 6, 2017
1 parent 353eb71 commit 1aaf930
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/parallel/test-os.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,45 +70,37 @@ if (common.isWindows) {
}

const endianness = os.endianness();
console.log('endianness = %s', endianness);
is.string(endianness);
assert.ok(/[BL]E/.test(endianness));

const hostname = os.hostname();
console.log('hostname = %s', hostname);
is.string(hostname);
assert.ok(hostname.length > 0);

const uptime = os.uptime();
console.log('uptime = %d', uptime);
is.number(uptime);
assert.ok(uptime > 0);

const cpus = os.cpus();
console.log('cpus = ', cpus);
is.array(cpus);
assert.ok(cpus.length > 0);

const type = os.type();
console.log('type = ', type);
is.string(type);
assert.ok(type.length > 0);

const release = os.release();
console.log('release = ', release);
is.string(release);
assert.ok(release.length > 0);
//TODO: Check format on more than just AIX
if (common.isAix)
assert.ok(/^\d+\.\d+$/.test(release));

const platform = os.platform();
console.log('platform = ', platform);
is.string(platform);
assert.ok(platform.length > 0);

const arch = os.arch();
console.log('arch = ', arch);
is.string(arch);
assert.ok(arch.length > 0);

Expand All @@ -121,7 +113,6 @@ if (!common.isSunOS) {


const interfaces = os.networkInterfaces();
console.error(interfaces);
switch (platform) {
case 'linux':
{
Expand Down Expand Up @@ -151,7 +142,6 @@ assert.ok(EOL.length > 0);

const home = os.homedir();

console.log('homedir = ' + home);
is.string(home);
assert.ok(home.includes(path.sep));

Expand Down

0 comments on commit 1aaf930

Please sign in to comment.