| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 4c36d6c commit 2e69e5f
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -50,6 +50,14 @@ function skipIfSingleExecutableIsNotSupported() { | |||
| 50 | 50 | common.skip('UndefinedBehavior Sanitizer is not supported'); | |
| 51 | 51 | } | |
| 52 | 52 | ||
| 53 | + try { | ||
| 54 | + readFileSync(process.execPath); | ||
| 55 | + } catch (e) { | ||
| 56 | + if (e.code === 'ERR_FS_FILE_TOO_LARGE') { | ||
| 57 | + common.skip('The Node.js binary is too large to be supported by postject'); | ||
| 58 | + } | ||
| 59 | + } | ||
| 60 | + | ||
| 53 | 61 | tmpdir.refresh(); | |
| 54 | 62 | ||
| 55 | 63 | // The SEA tests involve making a copy of the executable and writing some fixtures | |
| Back | FazBrowse Home | New Git URL |
0 commit comments