OLD | NEW |
---|---|
1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with 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 | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
13 // limitations under the License. | 13 // limitations under the License. |
14 | 14 |
15 #include "test/paths.h" | 15 #include "snapshot/win/cpu_context_win.h" |
16 | 16 |
17 #include "base/files/file_path.h" | 17 #include <windows.h> |
18 | |
18 #include "build/build_config.h" | 19 #include "build/build_config.h" |
19 #include "gtest/gtest.h" | 20 #include "gtest/gtest.h" |
20 #include "util/file/file_io.h" | 21 #include "snapshot/cpu_context.h" |
21 | 22 |
22 namespace crashpad { | 23 namespace crashpad { |
23 namespace test { | 24 namespace test { |
24 namespace { | 25 namespace { |
25 | 26 |
26 TEST(Paths, Executable) { | 27 #if defined(ARCH_CPU_X86_FAMILY) |
Mark Mentovai
2015/08/18 16:17:19
Doesn’t look like it’ll work as-is on 32-bit x86,
scottmg
2015/08/18 16:56:00
Added #error on 32 for now.
| |
27 base::FilePath executable_path = Paths::Executable(); | 28 |
28 base::FilePath executable_name = executable_path.BaseName(); | 29 TEST(CPUContextWin, InitializeX64Context) { |
29 #if defined(OS_WIN) | 30 CONTEXT context; |
30 EXPECT_EQ(FILE_PATH_LITERAL("crashpad_test_test.exe"), | 31 context.Rax = 10; |
31 executable_name.value()); | 32 context.FltSave.TagWord = 11; |
32 #else | 33 context.Dr0 = 12; |
33 EXPECT_EQ("crashpad_test_test", executable_name.value()); | 34 |
34 #endif // OS_WIN | 35 // Test the simple case, where everything in the CPUContextX86_64 argument is |
36 // set directly from the supplied thread, float, and debug state parameters. | |
37 { | |
38 CPUContextX86_64 cpu_context_x86_64 = {}; | |
39 InitializeX64Context(context, &cpu_context_x86_64); | |
40 EXPECT_EQ(10u, cpu_context_x86_64.rax); | |
41 EXPECT_EQ(11u, cpu_context_x86_64.fxsave.ftw); | |
42 EXPECT_EQ(12u, cpu_context_x86_64.dr0); | |
43 } | |
35 } | 44 } |
36 | 45 |
37 TEST(Paths, TestDataRoot) { | 46 #endif |
38 base::FilePath test_data_root = Paths::TestDataRoot(); | |
39 ScopedFileHandle file(LoggingOpenFileForRead( | |
40 test_data_root.Append(FILE_PATH_LITERAL("test")) | |
41 .Append(FILE_PATH_LITERAL("paths_test_data_root.txt")))); | |
42 EXPECT_TRUE(file.is_valid()); | |
43 } | |
44 | 47 |
45 } // namespace | 48 } // namespace |
46 } // namespace test | 49 } // namespace test |
47 } // namespace crashpad | 50 } // namespace crashpad |
OLD | NEW |