2017-04-11 09:33:11 +00:00
|
|
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-05 09:37:20 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
2017-04-11 09:33:11 +00:00
|
|
|
|
|
|
|
var ran = false;
|
|
|
|
|
|
|
|
async function test2() {
|
|
|
|
try {
|
2019-06-27 10:49:03 +00:00
|
|
|
let x = await import('modules-skip-9.mjs');
|
2017-04-11 09:33:11 +00:00
|
|
|
%AbortJS('failure: should be unreachable');
|
|
|
|
} catch(e) {
|
|
|
|
assertInstanceof(e, SyntaxError);
|
|
|
|
assertEquals(
|
2019-06-27 10:49:03 +00:00
|
|
|
"The requested module 'modules-skip-empty.mjs' does not provide an " +
|
2017-12-08 08:39:01 +00:00
|
|
|
"export named 'default'",
|
2017-04-11 09:33:11 +00:00
|
|
|
e.message);
|
|
|
|
ran = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test2();
|
2018-12-04 06:12:49 +00:00
|
|
|
%PerformMicrotaskCheckpoint();
|
2017-04-11 09:33:11 +00:00
|
|
|
assertTrue(ran);
|
|
|
|
|
|
|
|
ran = false;
|
|
|
|
|
|
|
|
async function test3() {
|
|
|
|
try {
|
2019-06-27 10:49:03 +00:00
|
|
|
let x = await import('nonexistent-file.mjs');
|
2017-04-11 09:33:11 +00:00
|
|
|
%AbortJS('failure: should be unreachable');
|
|
|
|
} catch(e) {
|
2021-01-20 13:43:42 +00:00
|
|
|
assertTrue(e.message.startsWith('d8: Error reading'));
|
2017-04-11 09:33:11 +00:00
|
|
|
ran = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test3();
|
2018-12-04 06:12:49 +00:00
|
|
|
%PerformMicrotaskCheckpoint();
|
2017-04-11 09:33:11 +00:00
|
|
|
assertTrue(ran);
|