File tree 2 files changed +15
-3
lines changed 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 5
5
"version" : " 0.2.0" ,
6
6
"configurations" : [
7
7
{
8
- "name" : " Launch Debug" ,
8
+ "name" : " Launch LLDB Debug" ,
9
9
"type" : " cppdbg" ,
10
10
"request" : " launch" ,
11
11
"program" : " ${workspaceFolder}/Bin/Debug/PlatformTests" ,
12
12
"args" : [],
13
13
"stopAtEntry" : false ,
14
14
"cwd" : " ${workspaceFolder}/Bin/Debug" ,
15
15
"environment" : [],
16
- "externalConsole" : true ,
16
+ "externalConsole" : false ,
17
17
"MIMode" : " lldb"
18
+ },
19
+ {
20
+ "name" : " Launch GDB Debug" ,
21
+ "type" : " cppdbg" ,
22
+ "request" : " launch" ,
23
+ "program" : " ${workspaceFolder}/Bin/Debug/PlatformTests" ,
24
+ "args" : [],
25
+ "stopAtEntry" : false ,
26
+ "cwd" : " ${workspaceFolder}/Bin/Debug" ,
27
+ "environment" : [],
28
+ "externalConsole" : false ,
29
+ "MIMode" : " gdb"
18
30
}
19
31
]
20
32
}
Original file line number Diff line number Diff line change @@ -195,10 +195,10 @@ TEST( PlatformFileTest, MakePathMakeFileAndMove )
195
195
const std::string fullPath = " foo_folder2" ;
196
196
MakePath ( fullPath.c_str () );
197
197
198
- File f;
199
198
const std::string fileName ( " foo3.data" );
200
199
const std::string filePath = fullPath + PathSeparator + fileName;
201
200
201
+ File f;
202
202
f.Open ( filePath.c_str (), FileMode::Write );
203
203
ASSERT_TRUE ( f.IsOpen () );
204
204
f.Close ();
You can’t perform that action at this time.
0 commit comments