Adding DMA test, and adding output to normal Redux launch.

This commit is contained in:
Nicolas "Pixel" Noble 2024-01-14 22:29:57 -08:00
parent a269e9a475
commit 5022986aea

22
.vscode/launch.json vendored
View file

@ -197,7 +197,7 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/pcsx-redux",
"args": [],
"args": ["-stdout", "-lua_stdout"],
"stopAtEntry": false,
"preLaunchTask": "make",
"cwd": "${workspaceFolder}",
@ -211,6 +211,26 @@
"ignoreFailures": true
}
]
},
{
"name": "(gdb) Launch PCSX-Redux DMA test",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/pcsx-redux-tests",
"args": ["--gtest_filter=DMA.Interpreter*"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}