diff options
author | Jed Estep <jestep@google.com> | 2016-03-12 03:48:57 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-03-12 03:48:57 +0100 |
commit | 3f581f782883f011e3b63c5f9086e09f3762db35 (patch) | |
tree | 9c5fe1f099c1694e71ad34057b7b0f24580119e3 /tests/common | |
parent | Merge "recovery: Remove SetColor, and other refactoring for WearUI" into nyc-dev (diff) | |
parent | Merge "Port applypatch.sh tests to recovery_component_tests" into nyc-dev (diff) | |
download | android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.tar android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.tar.gz android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.tar.bz2 android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.tar.lz android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.tar.xz android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.tar.zst android_bootable_recovery-3f581f782883f011e3b63c5f9086e09f3762db35.zip |
Diffstat (limited to 'tests/common')
-rw-r--r-- | tests/common/test_constants.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/common/test_constants.h b/tests/common/test_constants.h new file mode 100644 index 000000000..3490f6805 --- /dev/null +++ b/tests/common/test_constants.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2016 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 agree 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. + */ +#ifndef _OTA_TEST_CONSTANTS_H +#define _OTA_TEST_CONSTANTS_H + +#if defined(__LP64__) +#define NATIVE_TEST_PATH "/nativetest64" +#else +#define NATIVE_TEST_PATH "/nativetest" +#endif + +#endif |