Commit 63c9d1d9 authored by David Auer's avatar David Auer
Browse files

VSCODE: Add launch config for benchmark

parent 2b3a4fc1
Loading
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -4,6 +4,34 @@
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "gekkofs benchmark",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/build/src/daemon/gkfs_daemon",
            "args": [
                "--benchmark",
                "randomslicing",
                "--host-count",
                "800"
            ],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                },
                {
                    "description": "Enable all-exceptions",
                    "text": "catch throw",
                    "ignoreFailures": true
                }
            ]
        },
        {
            "name": "gekkofs daemon",
            "type": "cppdbg",