From dac8fd49759851a783280d3f5670c1d20cec5a1b Mon Sep 17 00:00:00 2001
From: Leo Balter <leonardo.balter@gmail.com>
Date: Thu, 4 Oct 2018 14:35:24 -0400
Subject: [PATCH] Recover Fixture files

---
 src/dynamic-import/instn-iee-err-ambiguous-import.case       | 2 +-
 .../catch/instn-iee-err-ambiguous-1_FIXTURE.js               | 4 ++++
 .../catch/instn-iee-err-ambiguous-2_FIXTURE.js               | 4 ++++
 .../catch/instn-iee-err-ambiguous-export_FIXTURE.js          | 4 ++++
 .../dynamic-import/catch/instn-iee-err-ambiguous_FIXTURE.js  | 5 +++++
 5 files changed, 18 insertions(+), 1 deletion(-)
 create mode 100644 test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-1_FIXTURE.js
 create mode 100644 test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-2_FIXTURE.js
 create mode 100644 test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous-export_FIXTURE.js
 create mode 100644 test/language/module-code/dynamic-import/catch/instn-iee-err-ambiguous_FIXTURE.js

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';
-- 
GitLab