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

This commit is contained in:
Bert Belder 2012-06-14 16:06:53 +02:00
parent 39d2337859
commit 34b0b6a613

View File

@ -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);