Ceedling is a handy-dandy build system for C projects. This Visual Studio Code extension runs your Ceedling test suite using VS Code's built-in Testing view.
Get the extension from the Visual Studio Code Marketplace.
Screenshot placeholder — out of date, needs to be recaptured against the current native Testing view UI.
Ceedling and its complementary ThrowTheSwitch pieces and parts are and always will be freely available and open source.
💼 Ceedling Suite is a growing collection of paid products and services built around Ceedling to help you do even more. Ceedling Assist for support contracts and training is now available.
🙏🏻 Please consider supporting Ceedling and this extension as a Github Sponsor
- Displays all detected tests and suites with their state in VS Code’s built-in Test Explorer (the Testing view).
- Adds gutter run/debug icons and CodeLens-style affordances to your test files, generated automatically from each test’s location.
- Shows a failed test’s message and failing line directly in the Test Explorer and the editor.
- Can be configured to report compiler and linker problems inline in the editor and in the Problems panel.
Requires Ceedling 1.0.0 or later. Requires VS Code 1.71.0 or later.
Ceedling 1.0.0 and 1.1.0 are both supported. Some behavior differs between them. Parametrized tests using TEST_CASE/TEST_RANGE need Ceedling 1.1.0 or later. Ceedling 1.0.0 has no support for these macros at all.
- Install the extension and restart VS Code.
- Open the workspace or folder containing your Ceedling project.
- Configure your Ceedling project configuration filepath in VS Code’s settings if required see below.
- Configure the shell path where Ceedling is installed in the VS Code’s settings if required (Windows) see below
- Enable and configure the
report_tests_log_factoryCeedling plugin with thecppunitoption in your Ceedling project configuration. This generates an XML test report on which this extension depends. - Open the Testing view.
- Run your tests using the run/debug icons in the Testing view or in your test file’s gutter.
Run and debug tests from the Testing view, or from the gutter next to a test in the editor.
The Testing view's toolbar also has Clean and Clobber buttons. They run ceedling clean and ceedling clobber against the current project.
Screenshot placeholder — needs to be captured against the current native Testing view UI.
| Property | Description |
|---|---|
ceedlingExplorer.projects |
An array of objects with the path to the Ceedling project (or yml-file) to use (relative to the workspace folder): - "path": can point either to a directory containing a "project.yml" file or directly to another .yml file(with the respective project.yml in the same directory). This path should be relative to the workspace root directory. - "debugLaunchConfig": must be the name property of the launch config (launch.json) that is used for this project. The ${command:ceedlingExplorer.debugTestExecutable} must still be used. - "name" (optional): used as name for the folder containing the tests in the test explorer |
ceedlingExplorer.shellPath |
The path to the shell where Ceedling is installed. By default (or if this option is set to null) it use the OS default shell. |
ceedlingExplorer.prettyTestLabel |
The test label is prettier in the test explorer, that mean the label is shorter and without begin prefix. E.g. inactive test_BlinkTaskShouldToggleLed, active BlinkTaskShouldToggleLed Inactive: Active: Screenshots placeholder — out of date, need to be recaptured. |
ceedlingExplorer.prettyTestFileLabel |
The test file label is prettier in the test explorer, that mean the label is shorter, without begin prefix, path and file type. E.g. inactive test/LEDs/test_BlinkTask.c, active BlinkTask Inactive: Active: Screenshots placeholder — out of date, need to be recaptured. |
ceedlingExplorer.testCommandArgs |
The command line arguments used to run Ceedling tests. The first argument have to litteraly contain the ${TEST_ID} tag. The value ["test:${TEST_ID}"] is used by default. For example, the arguments "test:${TEST_ID}", "gcov:${TEST_ID}", "utils:gcov" can be used to run tests and generate a gcov report. |
ceedlingExplorer.problemMatching |
Configuration of compiler/linker problem matching. See Problem matching section for details. |
ceedlingExplorer.testCaseMacroAliases |
An array of aliases for the TEST_CASE macro. By default it is ["TEST_CASE"] |
ceedlingExplorer.testRangeMacroAliases |
An array of aliases for the TEST_RANGE macro. By default it is ["TEST_RANGE"] |
ceedlingExplorer.ansiEscapeSequencesRemoved |
Should the ansi escape sequences be removed from ceedling stdout and stderr. By default it is true |
Problem matching is the mechanism that scans Ceedling output text for known error/warning/info strings and reports these inline in the editor and in the Problems panel. Tries to resemble VSCode Tasks problemMatchers mechanism.
Screenshot placeholder — out of date, needs to be recaptured.
| Property | Description |
|---|---|
mode |
Mode of problem matching. It is either "disabled", uses preset (i.e. "gcc") or uses custom "patterns" from patterns array. Default is "disabled". |
patterns |
Array of custom pattern objects used for problem matching. If mode is set to "patterns", Ceedling output is scanned line by line using each pattern provided in this array. Default is empty array. |
Example configuration which is sufficient in most cases:
"ceedlingExplorer.problemMatching": {
"mode": "gcc"
}| Property | Description |
|---|---|
scanStdout |
Scan stdout output for problems. Default is false. |
scanStderr |
Scan stderr output for problems. Default is true. |
severity |
Severity of messages found by this pattern. Correct values are "error", "warning" and "info". Default is "info". |
filePrefix |
Used to determine file’s absolute path if file location is relative. ${projectPath} replaced with project path. Empty string means that file location in message is absolute. Default is empty string. |
regexp |
The regular expression which is used to find an error, warning or info in the output line. ECMAScript (JavaScript) flavor, with global flag. Tip: you may find regex101 useful while experimenting with patterns. This property is required. |
message |
Index of the problem’s message in the regular expression. This property is required. |
file |
Index of the problem’s filename in the regular expression. This property is required. |
line |
Index of the problem’s (first) line in the regular expression. Not used if null or not defined. |
lastLine |
Index of the problem’s last line in the regular expression. Not used if null or not defined." |
column |
Index of the problem’s (first) column in the regular expression. Not used if null or not defined. |
lastColumn |
Index of the problem’s last column in the regular expression. Not used if null or not defined. |
Example pattern object (GCC compiler warnings):
{
"severity": "warning",
"filePrefix": "${projectPath}",
"regexp": "^(.*):(\\d+):(\\d+):\\s+warning:\\s+(.*)$",
"message": 4,
"file": 1,
"line": 2,
"column": 3
}The following commands are available in VS Code’s command palette, use the ID to add them to your keyboard shortcuts. Both also appear as toolbar buttons in the Testing view. Running, debugging, and reloading tests are done from VS Code’s built-in Testing view (or its toolbar/gutter icons) rather than extension-specific commands.
| ID | Command |
|---|---|
ceedlingExplorer.clean |
Run ceedling clean |
ceedlingExplorer.clobber |
Run ceedling clobber |
To set up debugging, create a Debug Configuration in launch.json and reference its name as the debugLaunchConfig property of the corresponding entry in ceedlingExplorer.projects (see Options). If ceedlingExplorer.projects isn’t configured at all, the extension falls back to a single default project expecting a launch configuration literally named ceedling.
${command:ceedlingExplorer.debugTestExecutable} can be used in the program property to reference the test executable being debugged. Depending on your Ceedling configuration these are found under projectPath/build/test/out/.
This looks like a VS Code command variable. It isn't one. No command by that name is registered. The extension substitutes it directly with the resolved executable path before starting the debug session.
Note: Individual test debugging is not supported — clicking “debug” on a single parametrized test case still runs and debugs its entire containing test file, since Ceedling always compiles and runs a whole test file’s executable at a time. Set or skip breakpoints accordingly.
Example configuration with Native Debug (webfreak.debug):
{
"name": "Ceedling Test Explorer Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/test/out/${command:ceedlingExplorer.debugTestExecutable}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:/MinGW/bin/gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}If you think you’ve found a bug, please check Known Issues and, if it's not there, file a bug report.
- Changelog — a terse, itemized record of what changed in each release.
- Release Notes — the narrative version, highlights worth reading before upgrading.
- Known Issues — currently open issues, by version.
- Breaking Changes — what to expect when upgrading across a compatibility boundary.
- Development — the workflow for working on this extension itself.
Want to work on this extension itself? See docs/Development.md for the development workflow, local debugging, and the development environment sidecar.
This VS Code extension is a fork of the orphaned Ceedling Test Explorer extension [Github, Marketplace] originally authored by Kin Numaru and taken over by the ThrowTheSwitch community, the authors and maintainers of Ceedling itself.
Ceedling 1.0.0 compatibility was added to the original extension project by merging a PR authored by @simeon-s1.
Thank you to Kin, @simeon-s1, and all those who contributed to the original repository.



