Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion lldb/test/API/commands/trace/TestTraceDumpInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def testErrorMessages(self):

self.expect(
"thread trace dump info",
substrs=["error: Process is not being traced"],
substrs=["error: process is not being traced"],
error=True,
)

Expand Down
2 changes: 1 addition & 1 deletion lldb/test/API/commands/trace/TestTraceExport.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def testErrorMessages(self):

self.expect(
f"thread trace export ctf --file {ctf_test_file}",
substrs=["error: Process is not being traced"],
substrs=["error: process is not being traced"],
error=True,
)

Expand Down
2 changes: 1 addition & 1 deletion lldb/test/API/commands/trace/TestTraceSave.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def testErrorMessages(self):
self.expect("run")

self.expect(
"trace save", substrs=["error: Process is not being traced"], error=True
"trace save", substrs=["error: process is not being traced"], error=True
)

@skipIfNoIntelPT
Expand Down
Loading