diff options
| author | 2018-08-01 16:04:33 +0000 | |
|---|---|---|
| committer | 2018-08-01 16:04:33 +0000 | |
| commit | d0c6ec392756fd038ebb8aeaad19aed94c5fd1a5 (patch) | |
| tree | e94f5e620f27b3d6dcb3b634bc25bf0274b1143b | |
| parent | c8a54ff22241d0217711ef964b019259f5e7798a (diff) | |
| parent | 30f3e9ce8150f24154db3fa06d11a3b43df9f77b (diff) | |
Merge "Run ART run-tests with ASan in interpreter access-checks mode."
| -rw-r--r-- | test/knownfailures.json | 14 | ||||
| -rw-r--r-- | test/testrunner/target_config.py | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/test/knownfailures.json b/test/knownfailures.json index ce4ebd76a5..a7c71a5e8d 100644 --- a/test/knownfailures.json +++ b/test/knownfailures.json @@ -1031,5 +1031,19 @@ "variant": "jit & debuggable", "bug": "b/109791792", "description": ["Stack too big."] + }, + { + "tests": ["1934-jvmti-signal-thread"], + "env_vars": {"SANITIZE_HOST": "address"}, + "variant": "interp-ac", + "bug": "b/111837501", + "description": ["Unexpected exception thrown"] + }, + { + "tests": ["1917-get-stack-frame"], + "env_vars": {"SANITIZE_HOST": "address"}, + "variant": "interp-ac", + "bug": "b/112071036", + "description": ["Unexpected exception thrown"] } ] diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py index 1924cee310..d5a4d454a1 100644 --- a/test/testrunner/target_config.py +++ b/test/testrunner/target_config.py @@ -287,9 +287,9 @@ target_config = { 'ASAN_OPTIONS' : 'detect_leaks=0' } }, - # TODO: Also exercise '--interp-ac' in 'art-asan', when b/109813469 is addressed. 'art-asan': { 'run-test' : ['--interpreter', + '--interp-ac', '--optimizing', '--jit', '--speed-profile'], |