| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 3f954ac commit cccb15d
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,5 +6,5 @@ prefix wasm-allocation | |||
| 6 | 6 | ||
| 7 | 7 | [true] # This section applies to all platforms | |
| 8 | 8 | ||
| 9 | - [$system!=linux || $asan==on] | ||
| 9 | + [$system!=linux || $asan==on || $pointer_compression==on] | ||
| 10 | 10 | test-wasm-allocation: SKIP | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1619,6 +1619,9 @@ def get_asan_state(vm, context): | |||
| 1619 | 1619 | asan = Execute([vm, '-p', 'process.config.variables.asan'], context).stdout.strip() | |
| 1620 | 1620 | return "on" if asan == "1" else "off" | |
| 1621 | 1621 | ||
| 1622 | + def get_pointer_compression_state(vm, context): | ||
| 1623 | + pointer_compression = Execute([vm, '-p', 'process.config.variables.v8_enable_pointer_compression'], context).stdout.strip() | ||
| 1624 | + return "on" if pointer_compression == "1" else "off" | ||
| 1622 | 1625 | ||
| 1623 | 1626 | def Main(): | |
| 1624 | 1627 | parser = BuildOptions() | |
@@ -1717,6 +1720,7 @@ def Main(): | |||
| 1717 | 1720 | 'arch': vmArch, | |
| 1718 | 1721 | 'type': get_env_type(vm, options.type, context), | |
| 1719 | 1722 | 'asan': get_asan_state(vm, context), | |
| 1723 | + 'pointer_compression': get_pointer_compression_state(vm, context), | ||
| 1720 | 1724 | } | |
| 1721 | 1725 | test_list = root.ListTests([], path, context, arch, mode) | |
| 1722 | 1726 | unclassified_tests += test_list | |
| Back | FazBrowse Home | New Git URL |
0 commit comments