Skip to content

Commit

Permalink
Add extra tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Slattz committed Apr 12, 2023
1 parent 24fe099 commit f3f7bcf
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ build/
mbaTest
isubTest
bcfTest
TestAll
cffTest
TestAll
TestAll_NoObfusC
26 changes: 26 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,32 @@
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "Run All Tests (No Obfuscation)",
"type": "shell",
"command": "/usr/bin/clang++-15",
"options": {
"cwd": "${workspaceFolder}/tests"
},
"args": [
"-g",
"-std=c++2b",
"-DOBFUSC_TEST_BUILD_ALL",
"${fileDirname}/**.cpp",
"-o",
"${fileDirname}/${fileBasenameNoExtension}_NoObfusC"
],
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build"
},
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}

0 comments on commit f3f7bcf

Please sign in to comment.