@@ -21,15 +21,21 @@ suite("lldb contract test suite", () => {
2121 let workspaceContext : WorkspaceContext ;
2222
2323 suiteSetup ( async ( ) => {
24+ console . log ( ">>> lldb contract test suite setup" ) ;
2425 workspaceContext = await activateExtension ( ) ;
26+ console . log ( ">>> lldb contract test suite setup complete" ) ;
2527 } ) ;
2628
2729 suiteTeardown ( async ( ) => {
30+ console . log ( ">>> lldb contract test suite teardown" ) ;
2831 await deactivateExtension ( ) ;
32+ console . log ( ">>> lldb contract test suite teardown complete" ) ;
2933 } ) ;
3034
3135 test ( "getLldbProcess Contract Test, make sure the command returns" , async ( ) => {
36+ console . log ( ">>> getLldbProcess Contract Test started" ) ;
3237 const result = await getLldbProcess ( workspaceContext ) ;
38+ console . log ( ">>> getLldbProcess process result" , result ) ;
3339
3440 // Assumption: machine will always return some process
3541 expect ( result ) . to . be . an ( "array" ) ;
@@ -42,7 +48,9 @@ suite("lldb contract test suite", () => {
4248 } ) ;
4349
4450 test ( "getLLDBLibPath Contract Test, make sure we can find lib LLDB" , async ( ) => {
51+ console . log ( ">>> getLldbProcess Contract Test 2 started" ) ;
4552 const libPath = await getLLDBLibPath ( workspaceContext . toolchain ) ;
53+ console . log ( ">>> getLldbProcess process result 2" , libPath ) ;
4654
4755 // Check the result for various platforms
4856 if ( process . platform === "linux" ) {
0 commit comments