cdt-gdb-adapter
Advanced tools
Comparing version 0.0.19-next.20230201040747.b2e5222.0 to 0.0.19-next.20230201214751.ec258a7.0
@@ -61,3 +61,3 @@ "use strict"; | ||
// If cannot get correct event, program timeout and test case failed. | ||
outputs = yield dc.waitForEvent('output', this.timeout()); | ||
outputs = yield dc.waitForEvent('output'); | ||
isCorrect = outputs.body.output.includes('breakpoint-modified'); | ||
@@ -64,0 +64,0 @@ } |
@@ -68,4 +68,7 @@ "use strict"; | ||
} | ||
// These timeouts should match what is in .mocharc.json and .mocharc-windows-ci.json | ||
this.defaultTimeout = os.platform() === 'win32' ? 25000 : 5000; | ||
// These timeouts should be smaller than what is in .mocharc.json and .mocharc-windows-ci.json | ||
// to allow the individual timeouts to fail before the whole test timesout. | ||
// This will mean error message on things such as waitForEvent will not | ||
// be hidden by overall test failure | ||
this.defaultTimeout = os.platform() === 'win32' ? 25000 / 2 : 5000 / 2; | ||
} | ||
@@ -72,0 +75,0 @@ /** |
@@ -57,3 +57,3 @@ "use strict"; | ||
// If cannot get correct event, program timeout and test case failed. | ||
outputs = yield dc.waitForEvent('output', this.timeout()); | ||
outputs = yield dc.waitForEvent('output'); | ||
isCorrect = outputs.body.output.includes('breakpoint-modified'); | ||
@@ -60,0 +60,0 @@ } |
{ | ||
"name": "cdt-gdb-adapter", | ||
"version": "0.0.19-next.20230201040747.b2e5222.0", | ||
"version": "0.0.19-next.20230201214751.ec258a7.0", | ||
"description": "gdb adapter implementing the debug adapter protocol", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 7 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 7 instances in 1 package
741723
11930