Skip to content
Merged
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 openmp/libompd/gdb-plugin/ompd/ompd.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def invoke(self, arg, from_tty):
"No ompd_dll_locations symbol in execution, make sure to have an OMPD enabled OpenMP runtime"
)

while gdb.parse_and_eval("(char**)ompd_dll_locations") == False:
while not gdb.parse_and_eval("(char**)ompd_dll_locations"):
gdb.execute("tbreak ompd_dll_locations_valid")
gdb.execute("continue")

Expand Down
2 changes: 1 addition & 1 deletion openmp/tools/archer/tests/lit.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if config.operating_system == 'Darwin':
if 'Linux' in config.operating_system:
config.available_features.add("linux")

if config.has_tsan == True:
if config.has_tsan:
config.available_features.add("tsan")

# to run with icc INTEL_LICENSE_FILE must be set
Expand Down
Loading