test: skip --title check on IBM i · nodejs/node@56c26fe nodejs Original file line numberDiff line numberDiff line change@@ -2,7 +2,7 @@2233// This test is meant to be spawned with NODE_OPTIONS=--title=foo44const assert = require('assert');5-if (process.platform !== 'sunos') { // --title is unsupported on SmartOS.5+if (process.platform !== 'sunos' && process.platform !== 'os400') { // --title is unsupported on SmartOS and IBM i.66assert.strictEqual(process.title, 'foo');77}88