Skip to content
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

[Dynamic Instrumentation] DEBUG-2249 Line and method probes exploration tests #5914

Merged
merged 32 commits into from
Sep 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c08225c
Added support for line probes in the exploration tests
GreenMatan Oct 24, 2023
c668fab
Remove old property
dudikeleti Apr 8, 2024
5eb64ee
Skip certain tests that fail on stackoverflow exception in case of in…
dudikeleti Apr 9, 2024
88bef5a
Update logs
dudikeleti Jun 21, 2024
267bff0
Normalize pdb documents path for comparison and add assembly location…
dudikeleti Jun 21, 2024
e6afc08
remove line probes exploration from live debugger
dudikeleti Jun 21, 2024
5cff520
Add warning if the wait for discovery service ended unsuccessfully
dudikeleti Jun 21, 2024
62b886e
Add line probes and rejit verify env var
dudikeleti Jun 21, 2024
f248cb5
Create line probes files and add env vars
dudikeleti Jun 21, 2024
5994be5
Add instrumentation for exploration line probes
dudikeleti Jun 21, 2024
6f0f5e7
fix exploration tests line probes logic
dudikeleti Jun 21, 2024
c34b5b8
minor
dudikeleti Jun 21, 2024
8392823
update build schema
dudikeleti Jun 21, 2024
b03968a
sanitize mvid
dudikeleti Jun 27, 2024
95d99bd
Add cal_once
dudikeleti Jul 3, 2024
d512a39
add TryFinallyMethodAndLine test
dudikeleti Jul 3, 2024
d1bf0c5
skip on non windows
dudikeleti Jul 3, 2024
90f0014
Fix build
dudikeleti Jul 4, 2024
b091f65
Made the Fault-Tolerant Instrumentation to work in conjunction with t…
GreenMatan Jul 15, 2024
1317bb5
Update after rebase
dudikeleti Aug 16, 2024
0867a56
update after rebase
dudikeleti Aug 16, 2024
dd0686a
Update test and approval
dudikeleti Aug 16, 2024
452f1e1
Add progress bar for creating lines and improve logs
dudikeleti Sep 4, 2024
20566a7
Run exploration tests with line scenario only for protobuf
dudikeleti Sep 4, 2024
a8979cf
PR comments
dudikeleti Sep 10, 2024
6adad90
More pr comments
dudikeleti Sep 12, 2024
403299f
remove WaitForDebuggerAttach
dudikeleti Sep 12, 2024
fe5b280
trying fix linux build
dudikeleti Sep 16, 2024
9fbeaab
another try
dudikeleti Sep 16, 2024
1ec4b80
one more
dudikeleti Sep 16, 2024
67916d8
Update approval
dudikeleti Sep 17, 2024
d40945c
fix directory path in linux
dudikeleti Sep 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
trying fix linux build
  • Loading branch information
dudikeleti committed Sep 17, 2024
commit fe5b2800746e254a794bd4985f4d1d891fb259c9
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ auto& DebuggerProbesInstrumentationRequester::GetExplorationTestLineProbes(const

void DebuggerProbesInstrumentationRequester::InitializeExplorationTestLineProbes(const WSTRING& filename)
{
std::ifstream file(filename);
std::ifstream file(filename.data());
if (!file.is_open())
{
Logger::Error("InitializeExplorationTestLineProbes: Unable to open file: ", filename);
Expand Down