Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | |
|
scottmg
2015/03/09 17:18:10
2015
Mark Mentovai
2015/03/09 17:24:15
scottmg wrote:
| |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 | |
| 15 #ifndef CRASHPAD_UTIL_TEST_PATHS_H_ | |
| 16 #define CRASHPAD_UTIL_TEST_PATHS_H_ | |
| 17 | |
| 18 #include "base/basictypes.h" | |
| 19 #include "base/files/file_path.h" | |
| 20 | |
| 21 namespace crashpad { | |
| 22 namespace test { | |
| 23 | |
| 24 //! \brief Functions to obtain paths from within tests. | |
| 25 class Paths { | |
| 26 public: | |
| 27 //! \brief Returns the pathname of the currently-running test executable. | |
| 28 static base::FilePath Executable(); | |
| 29 | |
| 30 //! \brief Returns the pathname of the test data root. | |
| 31 //! | |
| 32 //! If the `CRASHPAD_TEST_DATA_ROOT` environment variable is set, its value | |
| 33 //! will be returned. Otherwise, this function will attempt to locate the test | |
| 34 //! data root relative to the executable path. If this fails, it will fall | |
| 35 //! back to returning the current working directory. | |
| 36 //! | |
| 37 //! At present, the test data root is normally the root of the Crashpad source | |
| 38 //! tree, although this may not be the case indefinitely. This function may | |
| 39 //! only be used to locate test data, not for arbitrary access to source | |
| 40 //! files. | |
| 41 static base::FilePath TestDataRoot(); | |
| 42 | |
| 43 DISALLOW_IMPLICIT_CONSTRUCTORS(Paths); | |
| 44 }; | |
| 45 | |
| 46 } // namespace test | |
| 47 } // namespace crashpad | |
| 48 | |
| 49 #endif // CRASHPAD_UTIL_TEST_PATHS_H_ | |
| OLD | NEW |