diff options
author | Joshua Meredith <joshmeredith2008@gmail.com> | 2021-11-16 16:21:45 +0000 |
---|---|---|
committer | Joshua Meredith <joshmeredith2008@gmail.com> | 2021-11-16 16:21:45 +0000 |
commit | ac2ee0fba54872e73f50f985675b4fad88f03a73 (patch) | |
tree | 5b65e491f5613994edfb702af650b6e3c6591c92 | |
parent | c8b85f2bc164c5d4d761e4782f75bebfed1e8184 (diff) | |
download | haskell-wip/jdm/ghcjs-testsuite.tar.gz |
switch javascript_failures function from expect_fail to skipwip/jdm/ghcjs-testsuite
-rw-r--r-- | testsuite/driver/testlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index 2307c85418..9309c62a54 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -2636,5 +2636,5 @@ def modify_lines(s: str, f: Callable[[str], str]) -> str: return s def javascript_failures( name, opts ): - # when(opsys('OSJavaScript'), skip(name, opts)) - when(opsys('OSJavaScript'), expect_fail(name, opts))
\ No newline at end of file + when(opsys('OSJavaScript'), skip(name, opts)) + # when(opsys('OSJavaScript'), expect_fail(name, opts))
\ No newline at end of file |