diff options
Diffstat (limited to 'test/144-static-field-sigquit')
| -rw-r--r-- | test/144-static-field-sigquit/Android.bp | 2 | ||||
| -rw-r--r-- | test/144-static-field-sigquit/run.py | 19 |
2 files changed, 20 insertions, 1 deletions
diff --git a/test/144-static-field-sigquit/Android.bp b/test/144-static-field-sigquit/Android.bp index 0c21c07bea..1febd328e8 100644 --- a/test/144-static-field-sigquit/Android.bp +++ b/test/144-static-field-sigquit/Android.bp @@ -15,7 +15,7 @@ package { java_test { name: "art-run-test-144-static-field-sigquit", defaults: ["art-run-test-defaults"], - test_config_template: ":art-run-test-target-template", + test_config_template: ":art-run-test-target-no-test-suite-tag-template", srcs: ["src/**/*.java"], data: [ ":art-run-test-144-static-field-sigquit-expected-stdout", diff --git a/test/144-static-field-sigquit/run.py b/test/144-static-field-sigquit/run.py new file mode 100644 index 0000000000..c4268ce575 --- /dev/null +++ b/test/144-static-field-sigquit/run.py @@ -0,0 +1,19 @@ +#!/bin/bash +# +# Copyright (C) 2022 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +def run(ctx, args): + ctx.default_run(args, android_log_tags="*:w") |