11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_cirequire('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst { spawnSync } = require('child_process'); 51cb0ef41Sopenharmony_ciconst os = require('os'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst { signal, status, output } = 81cb0ef41Sopenharmony_ci spawnSync(process.execPath, ['--security-revert=not-a-cve']); 91cb0ef41Sopenharmony_ciassert.strictEqual(signal, null); 101cb0ef41Sopenharmony_ciassert.strictEqual(status, 12); 111cb0ef41Sopenharmony_ciassert.strictEqual( 121cb0ef41Sopenharmony_ci output[2].toString(), 131cb0ef41Sopenharmony_ci `${process.execPath}: Error: ` + 141cb0ef41Sopenharmony_ci `Attempt to revert an unknown CVE [not-a-cve]${os.EOL}`); 15