| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent e6b131f commit ad96a65
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -107,12 +107,7 @@ pkgs.mkShell { | |||
| 107 | 107 | BUILD_WITH = if (ninja != null) then "ninja" else "make"; | |
| 108 | 108 | NINJA = pkgs.lib.optionalString (ninja != null) "${pkgs.lib.getExe ninja}"; | |
| 109 | 109 | CI_SKIP_TESTS = pkgs.lib.concatStringsSep "," ( | |
| 110 | - [ ] | ||
| 111 | - ++ pkgs.lib.optionals useSharedAda [ | ||
| 112 | - # Different versions of Ada affect the WPT tests | ||
| 113 | - "test-url" | ||
| 114 | - ] | ||
| 115 | - ++ pkgs.lib.optionals useSharedOpenSSL [ | ||
| 110 | + pkgs.lib.optionals useSharedOpenSSL [ | ||
| 116 | 111 | # Path to the openssl.cnf is different from the expected one | |
| 117 | 112 | "test-strace-openat-openssl" | |
| 118 | 113 | ] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,11 @@ | |||
| 1 | 1 | 'use strict'; | |
| 2 | 2 | ||
| 3 | + const { skip } = require('../common'); | ||
| 4 | + | ||
| 5 | + if (process.config.variables.node_shared_ada) { | ||
| 6 | + skip('Different versions of Ada affect the WPT tests'); | ||
| 7 | + } | ||
| 8 | + | ||
| 3 | 9 | const { WPTRunner } = require('../common/wpt'); | |
| 4 | 10 | ||
| 5 | 11 | const runner = new WPTRunner('url'); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments