Browse Source

test-bad-unicode: update to reflect V8 3.11 behavior

v0.9.1-release
Bert Belder 13 years ago
parent
commit
34b0b6a613
  1. 13
      test/simple/test-bad-unicode.js

13
test/simple/test-bad-unicode.js

@ -18,9 +18,14 @@
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
var assert = require('assert');
var bad_unicode = '\uc/ef';
console.log(bad_unicode);
var assert = require('assert'),
exception = null;
assert.equal(bad_unicode, "uc/ef");
try {
eval('"\\uc/ef"');
} catch (e) {
exception = e;
}
assert(exception instanceof SyntaxError);

Loading…
Cancel
Save