Winson | 62ac8b5 | 2019-12-04 08:36:48 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2020 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Mårten Kongstad | c4799eb | 2020-06-04 20:48:11 +0200 | [diff] [blame] | 17 | #ifndef IDMAP2_TESTS_TESTCONSTANTS_H_ |
| 18 | #define IDMAP2_TESTS_TESTCONSTANTS_H_ |
Winson | 62ac8b5 | 2019-12-04 08:36:48 -0800 | [diff] [blame] | 19 | |
| 20 | namespace android::idmap2::TestConstants { |
| 21 | |
Jeremy Meyer | a761f33 | 2022-10-21 17:42:14 +0000 | [diff] [blame] | 22 | constexpr const auto TARGET_CRC = 0xa960a69; |
| 23 | constexpr const auto TARGET_CRC_STRING = "0a960a69"; |
Winson | 62ac8b5 | 2019-12-04 08:36:48 -0800 | [diff] [blame] | 24 | |
Ryan Mitchell | 30dc2e0 | 2020-12-02 11:43:18 -0800 | [diff] [blame] | 25 | constexpr const auto OVERLAY_CRC = 0xb71095cf; |
| 26 | constexpr const auto OVERLAY_CRC_STRING = "b71095cf"; |
| 27 | |
| 28 | constexpr const char* OVERLAY_NAME_DEFAULT = "Default"; |
| 29 | constexpr const char* OVERLAY_NAME_ALL_POLICIES = "AllPolicies"; |
Winson | 62ac8b5 | 2019-12-04 08:36:48 -0800 | [diff] [blame] | 30 | |
| 31 | } // namespace android::idmap2::TestConstants |
| 32 | |
Mårten Kongstad | c4799eb | 2020-06-04 20:48:11 +0200 | [diff] [blame] | 33 | #endif // IDMAP2_TESTS_TESTCONSTANTS_H_ |