https://bugs.webkit.org/show_bug.cgi?id=148689
Until bug[1] is fixed, we disable the module tests.
Since the local file system name resolution is just implemented in jsc.cpp and
is intended to be used for the module tests, it does not affect JSC framework
and WebKit itself.
[1]: https://bugs.webkit.org/show_bug.cgi?id=148917
* tests/modules.yaml:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@189453
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-09-06 Yusuke Suzuki <utatane.tea@gmail.com>
+
+ Unreviewed, disable module tests in Windows until name resolution is fixed
+ https://bugs.webkit.org/show_bug.cgi?id=148689
+
+ Until bug[1] is fixed, we disable the module tests.
+ Since the local file system name resolution is just implemented in jsc.cpp and
+ is intended to be used for the module tests, it does not affect JSC framework
+ and WebKit itself.
+
+ [1]: https://bugs.webkit.org/show_bug.cgi?id=148917
+
+ * tests/modules.yaml:
+
2015-09-06 Sukolsak Sakshuwong <sukolsak@gmail.com>
Simplify JIT::emit_op_mod()
2015-09-06 Sukolsak Sakshuwong <sukolsak@gmail.com>
Simplify JIT::emit_op_mod()
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- path: modules
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- path: modules
+ cmd: |
+ # FIXME: ES6 Modules in the JSC shell now uses an absolute path as an unique key to each module.
+ # However, the length of the path name in Windows is limited and short; (_MAX_PATH = 260).
+ # As a result, JSC tests for modules in Windows fail because the current working directory path is truncated.
+ # https://bugs.webkit.org/show_bug.cgi?id=148917
+ if ($hostOS == "windows")
+ skip
+ else
+ runModules
+ end