GP-2677: Test fixes

This commit is contained in:
Dan
2023-08-03 09:41:17 -04:00
parent 9d3d32a8c4
commit 854fc7f50a
5 changed files with 19 additions and 7 deletions
+10
View File
@@ -62,6 +62,11 @@ dependencies {
testImplementation project(path: ':FunctionGraph', configuration: 'testArtifacts')
testImplementation project(path: ':PDB', configuration: 'testArtifacts')
testImplementation project(path: ':GnuDemangler', configuration: 'testArtifacts')
testImplementation project(path: ':Framework-TraceModeling', configuration: 'testArtifacts')
testImplementation project(path: ':Framework-AsyncComm', configuration: 'testArtifacts')
testImplementation project(path: ':Framework-Debugging', configuration: 'testArtifacts')
testImplementation project(path: ':Debugger', configuration: 'testArtifacts')
}
// For Java 9, we must explicitly export references to the internal classes we are using.
@@ -72,3 +77,8 @@ ext.addExports([
'java.desktop/sun.swing=ALL-UNNAMED',
'java.desktop/sun.java2d=ALL-UNNAMED'
])
integrationTest {
dependsOn { project(':Debugger-agent-gdb').installPyPackage }
dependsOn { project(':Debugger-agent-lldb').installPyPackage }
}