| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent db7f413 commit 8f09a1f
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 | |
|---|---|---|---|
@@ -1628,6 +1628,9 @@ def get_asan_state(vm, context): | |||
| 1628 | 1628 | asan = Execute([vm, '-p', 'process.config.variables.asan'], context).stdout.strip() | |
| 1629 | 1629 | return "on" if asan == "1" else "off" | |
| 1630 | 1630 | ||
| 1631 | + def get_pointer_compression_state(vm, context): | ||
| 1632 | + pointer_compression = Execute([vm, '-p', 'process.config.variables.v8_enable_pointer_compression'], context).stdout.strip() | ||
| 1633 | + return "on" if pointer_compression == "1" else "off" | ||
| 1631 | 1634 | ||
| 1632 | 1635 | def Main(): | |
| 1633 | 1636 | parser = BuildOptions() | |
@@ -1726,6 +1729,7 @@ def Main(): | |||
| 1726 | 1729 | 'arch': vmArch, | |
| 1727 | 1730 | 'type': get_env_type(vm, options.type, context), | |
| 1728 | 1731 | 'asan': get_asan_state(vm, context), | |
| 1732 | + 'pointer_compression': get_pointer_compression_state(vm, context), | ||
| 1729 | 1733 | } | |
| 1730 | 1734 | test_list = root.ListTests([], path, context, arch, mode) | |
| 1731 | 1735 | unclassified_tests += test_list | |
| Back | FazBrowse Home | New Git URL |
0 commit comments