Go to file
Seth Brenith fcb34e7f66 Omit failing v8windbg test steps
The test is failing due to a bug in dbghelp.dll. I don't think there's
anything we can do about that except disable the test until we've
upgraded to a fixed version.

Bug: v8:13484
Change-Id: I8017c3ad2c934701985adadc6ba3f68d2d53099d
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4061543
Reviewed-by: Emanuel Ziegler <ecmziegler@chromium.org>
Commit-Queue: Seth Brenith <seth.brenith@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#84704}
2022-12-07 11:29:25 +00:00
.github
bazel
build_overrides
custom_deps
docs
gni
include Add V8StackFrame export 2022-12-06 09:40:43 +00:00
infra [gcmole] Execute test run on the bots 2022-12-06 19:33:12 +00:00
samples
src [wasm-gc] Add new br_on_cast null variant taking a heap type immediate 2022-12-07 10:17:02 +00:00
test [wasm-gc] Add new br_on_cast null variant taking a heap type immediate 2022-12-07 10:17:02 +00:00
testing
third_party
tools Omit failing v8windbg test steps 2022-12-07 11:29:25 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.style.yapf
.vpython3
.ycm_extra_conf.py
AUTHORS
BUILD.bazel Reland "[turboshaft] Port LateEscapeAnalysis" 2022-12-05 16:13:36 +00:00
BUILD.gn Include write barrier in JS shared heap buildrunner config 2022-12-06 12:45:34 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS (trusted) 2022-12-07 04:06:38 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
WORKSPACE

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://v8.dev/docs

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned at v8.dev/docs/contribute.