We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc2ab06 commit 9e74e54Copy full SHA for 9e74e54
test/sequential/test-fs-readfile-tostring-fail.js
@@ -8,7 +8,10 @@ if (!common.enoughTestMem)
8
const assert = require('assert');
9
const fs = require('fs');
10
const path = require('path');
11
+const cp = require('child_process');
12
const kStringMaxLength = process.binding('buffer').kStringMaxLength;
13
+if (common.isAIX && (Number(cp.execSync('ulimit -f')) * 512) < kStringMaxLength)
14
+ common.skip('intensive toString tests due to file size confinements');
15
16
common.refreshTmpDir();
17
0 commit comments