Skip to content
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

Add memory commit test using massif #1267

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
10 changes: 6 additions & 4 deletions testrunner/run_commit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,11 @@ def context_linux_x64_test262test():
# Github status.
return 'TEST262 SUCCESS\n' in res['stdout']

def context_linux_x64_releasetest():
cwd = os.getcwd()

return execute([ 'make', 'releasetest' ], catch=True)['success']

def context_linux_x64_duk_dddprint():
cwd = os.getcwd()
prep(options_yaml=r"""
Expand Down Expand Up @@ -931,13 +936,10 @@ def context_linux_x64_dukluv():
'linux-x64-apitest-assert': context_linux_x64_apitest_assert,
'linux-x64-apitest-valgrind': context_linux_x64_apitest_valgrind,
'linux-x64-test262test': context_linux_x64_test262test,
'linux-x64-releasetest': context_linux_x64_releasetest,
# XXX: torture options

# XXX: regfuzztest
# XXX: luajstest
# XXX: jsinterpretertest
# XXX: bluebirdtest
# XXX: emscripteninceptiontest

'linux-x64-duk-clang': context_linux_x64_duk_clang,
'linux-x64-duk-gxx': context_linux_x64_duk_gxx,
Expand Down