summaryrefslogtreecommitdiffstats
path: root/tests/common/test_constants.h
diff options
context:
space:
mode:
authorJed Estep <jestep@google.com>2016-03-12 03:44:26 +0100
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-03-12 03:44:26 +0100
commit761653a4ad1c392fcd505e8909661fd64f02ce97 (patch)
tree614e2946ba8b7587d04e0989ce18eef78f7f8fe1 /tests/common/test_constants.h
parentMerge "recovery: Remove SetColor, and other refactoring for WearUI" into nyc-dev (diff)
parentPort applypatch.sh tests to recovery_component_tests (diff)
downloadandroid_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.tar
android_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.tar.gz
android_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.tar.bz2
android_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.tar.lz
android_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.tar.xz
android_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.tar.zst
android_bootable_recovery-761653a4ad1c392fcd505e8909661fd64f02ce97.zip
Diffstat (limited to 'tests/common/test_constants.h')
-rw-r--r--tests/common/test_constants.h25
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