Skip to content

Disable test_autodebug for V8 #4633

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ban V8 on test_autodebug for wasm only
  • Loading branch information
jgravelle-google committed Oct 18, 2016
commit 85e1ec1c7678d31c44aa1d5648529291cdeb81e0
4 changes: 3 additions & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5741,7 +5741,9 @@ def do_autodebug_post(self, filename):
Building.llvm_dis(filename)

def test_autodebug(self):
self.banned_js_engines = [V8_ENGINE] # Broken on V8 but not node; wasm-only
if self.is_wasm():
# Broken on V8 but not node; wasm-only
self.banned_js_engines = [V8_ENGINE]
if Building.LLVM_OPTS: return self.skip('LLVM opts mess us up')
Building.COMPILER_TEST_OPTS += ['--llvm-opts', '0']

Expand Down