-
Notifications
You must be signed in to change notification settings - Fork 67
ctrace initial development #2548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
772c791
[ctrace] Add trace decoder implementation and tests
thorstendb-ARM f9f1928
[ctrace] Expand architecture documentation
thorstendb-ARM 0b345b5
Merge branch 'main' into ctrace-dev1
thorstendb-ARM 84c724c
[ctrace] Fix static analysis and Windows tests
thorstendb-ARM 6c5b4a4
[ctrace] Keep CSV fixtures platform independent
thorstendb-ARM 0f9359b
[ctrace] Complete decoder test coverage
thorstendb-ARM dd5ed3a
[ctrace] Fix CodeQL test sink warning
thorstendb-ARM bb20f3d
[ctrace] Consolidate test infrastructure
thorstendb-ARM b75f846
[ctrace] Harden decoder and release packaging
thorstendb-ARM 393a5ee
[ctrace] Complete branch coverage
thorstendb-ARM 0f6532a
[ctrace] Refresh cppcheck suppressions
thorstendb-ARM fbb53dc
[ctrace] Scope build and workflow integration
thorstendb-ARM a012a3e
[ctrace] Refine diagnostics and test reset recovery
thorstendb-ARM aac5e5d
[ctrace] Align test documentation with build behavior
thorstendb-ARM 8f1287b
[ctrace] Document OpenCSD issue without downstream patch
thorstendb-ARM 9347849
[ctrace] Simplify workflow and C++ structure
thorstendb-ARM d76a0da
[ctrace] Generalize test fixture names
thorstendb-ARM ac7d37f
[ctrace] Resolve CI findings and improve coverage
thorstendb-ARM 41e3e2a
[ctrace] Fix GCC custom deleter initialization
thorstendb-ARM 546ebd7
[ctrace] Remove stale runtime inventory link
thorstendb-ARM 52e772f
[ctrace] Bound reset recovery fixture runtime
thorstendb-ARM 1e68900
[ctrace] Address review findings
thorstendb-ARM 9d4b83d
[ctrace] Cover metadata label fallback
thorstendb-ARM b2691c7
Merge branch 'main' into ctrace-dev1
thorstendb-ARM cc561c9
[ctrace] Align help output with specification
thorstendb-ARM 95cecaf
[ctrace] Address final review findings
thorstendb-ARM 3a581db
[ctrace] Restore full line coverage
thorstendb-ARM f0541de
[ctrace] Document processor identity resolution
thorstendb-ARM ef29d01
[ctrace] Align tests, build, and documentation
thorstendb-ARM 1dd247f
[ctrace] Restore required trace-run test coverage
thorstendb-ARM 63b1117
[ctrace] Align trace-run validation with schema
thorstendb-ARM a50252a
fix(ctrace): leave CSV stream empty for unformatted trace
thorstendb-ARM de21c7b
fix(ctrace): scope workflow path triggers
thorstendb-ARM 8d0ef63
refactor(ctrace): use gtest integration suite
thorstendb-ARM 02c1b95
fix(ctrace): use stable coverage target
thorstendb-ARM aae3c79
Merge branch 'main' into ctrace-dev1
thorstendb-ARM 6fbf7f9
[ctrace] Restore existing dependency versions in license
thorstendb-ARM af656ec
[ctrace] Fix coverage build and minimize repository changes
thorstendb-ARM File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,3 +46,4 @@ | |
| # Denote all files that are truly binary and should not be modified. | ||
| *.png binary | ||
| *.jpg binary | ||
| *.raw binary | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| [ | ||
| { | ||
| "runs_on":"macos-14", | ||
| "runs_on":"macos-15", | ||
| "target":"darwin", | ||
| "arch": "arm64", | ||
| "binary": "ctrace", | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| BasedOnStyle: LLVM | ||
| IndentWidth: 2 | ||
| ContinuationIndentWidth: 4 | ||
| ConstructorInitializerIndentWidth: 2 | ||
| TabWidth: 2 | ||
| UseTab: Never | ||
| ColumnLimit: 120 | ||
| BreakBeforeBraces: Custom | ||
| BraceWrapping: | ||
| AfterFunction: true | ||
| PointerAlignment: Left | ||
| DerivePointerAlignment: false | ||
| SortIncludes: Never | ||
| SpaceBeforeParens: ControlStatements | ||
| AllowShortFunctionsOnASingleLine: Empty | ||
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| CompileFlags: | ||
| CompilationDatabase: ../../build | ||
| Diagnostics: | ||
| UnusedIncludes: Strict | ||
| MissingIncludes: Strict |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.