diff --git a/src/dynamic-import/instn-iee-err-ambiguous-import.case b/src/dynamic-import/instn-iee-err-ambiguous-import.case index 3a2c286b65..184744db3f 100644 --- a/src/dynamic-import/instn-iee-err-ambiguous-import.case +++ b/src/dynamic-import/instn-iee-err-ambiguous-import.case @@ -35,6 +35,6 @@ template: catch ---*/ //- params -'./instn-iee-err-ambiguous-export.js' +'./instn-iee-err-ambiguous-export_FIXTURE.js' //- body assert.sameValue(error.name, 'SyntaxError'); diff --git a/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-1_FIXTURE.js b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-1_FIXTURE.js new file mode 100644 index 0000000000..896bdff50a --- /dev/null +++ b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-1_FIXTURE.js @@ -0,0 +1,4 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +export var x; diff --git a/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-2_FIXTURE.js b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-2_FIXTURE.js new file mode 100644 index 0000000000..896bdff50a --- /dev/null +++ b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-2_FIXTURE.js @@ -0,0 +1,4 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +export var x; diff --git a/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-export_FIXTURE.js b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-export_FIXTURE.js new file mode 100644 index 0000000000..54a857b5d5 --- /dev/null +++ b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-export_FIXTURE.js @@ -0,0 +1,4 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +export { x } from './instn-iee-err-ambiguous_FIXTURE.js'; diff --git a/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous_FIXTURE.js b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous_FIXTURE.js new file mode 100644 index 0000000000..7857161c3a --- /dev/null +++ b/test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous_FIXTURE.js @@ -0,0 +1,5 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +export * from './instn-iee-err-ambiguous-1_FIXTURE.js'; +export * from './instn-iee-err-ambiguous-2_FIXTURE.js';