summaryrefslogtreecommitdiffstats
path: root/tests/common/test_constants.h
diff options
context:
space:
mode:
authorJed Estep <jestep@google.com>2016-03-12 03:50:53 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-03-12 03:50:53 +0100
commit409b7b1b0c9e62fb15c79a13ca194c7cef060542 (patch)
tree7213e328e813e537c543fa171b7a674474c63744 /tests/common/test_constants.h
parentMerge "recovery: Remove SetColor, and other refactoring for WearUI" into nyc-dev am: 20df4adead (diff)
parentMerge "Port applypatch.sh tests to recovery_component_tests" into nyc-dev (diff)
downloadandroid_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.tar
android_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.tar.gz
android_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.tar.bz2
android_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.tar.lz
android_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.tar.xz
android_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.tar.zst
android_bootable_recovery-409b7b1b0c9e62fb15c79a13ca194c7cef060542.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