1*1208bc7eSAndroid Build Coastguard Worker // Copyright (C) 2021 The Android Open Source Project 2*1208bc7eSAndroid Build Coastguard Worker // 3*1208bc7eSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License"); 4*1208bc7eSAndroid Build Coastguard Worker // you may not use this file except in compliance with the License. 5*1208bc7eSAndroid Build Coastguard Worker // You may obtain a copy of the License at 6*1208bc7eSAndroid Build Coastguard Worker // 7*1208bc7eSAndroid Build Coastguard Worker // http://www.apache.org/licenses/LICENSE-2.0 8*1208bc7eSAndroid Build Coastguard Worker // 9*1208bc7eSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software 10*1208bc7eSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, 11*1208bc7eSAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*1208bc7eSAndroid Build Coastguard Worker // See the License for the specific language governing permissions and 13*1208bc7eSAndroid Build Coastguard Worker // limitations under the License. 14*1208bc7eSAndroid Build Coastguard Worker 15*1208bc7eSAndroid Build Coastguard Worker #include <stdbool.h> 16*1208bc7eSAndroid Build Coastguard Worker #include <sys/wait.h> 17*1208bc7eSAndroid Build Coastguard Worker 18*1208bc7eSAndroid Build Coastguard Worker // jemalloc unit tests exit with 0 for success, 1 for success with skipped 19*1208bc7eSAndroid Build Coastguard Worker // tests, and 2 for failure. testResultPredicate(int exit_status)20*1208bc7eSAndroid Build Coastguard Workerstatic inline bool testResultPredicate(int exit_status) { 21*1208bc7eSAndroid Build Coastguard Worker return exit_status == 0 || exit_status == 1; 22*1208bc7eSAndroid Build Coastguard Worker } 23*1208bc7eSAndroid Build Coastguard Worker 24*1208bc7eSAndroid Build Coastguard Worker static const bool known_failure_on_android = true; 25