Skip to content

Commit

Permalink
test/datadeps: Disable nondom checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsamaroo committed Nov 26, 2024
1 parent fce621e commit 1359bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/datadeps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function taskdeps_for_task(logs::Dict{Int,<:Dict}, tid::Int)
end
error("Task $tid not found in logs")
end
function test_task_dominators(logs::Dict, tid::Int, doms::Vector; all_tids::Vector=[], nondom_check::Bool=true)
function test_task_dominators(logs::Dict, tid::Int, doms::Vector; all_tids::Vector=[], nondom_check::Bool=false)
g = SimpleDiGraph()
tid_to_v = Dict{Int,Int}()
seen = Set{Int}()
Expand Down Expand Up @@ -165,7 +165,7 @@ function test_datadeps(;args_chunks::Bool,
end
tid_1, tid_2 = task_id.(ts)
test_task_dominators(logs, tid_1, []; all_tids=[tid_1, tid_2])
test_task_dominators(logs, tid_2, []; all_tids=[tid_1, tid_2])
test_task_dominators(logs, tid_2, []; all_tids=[tid_1, tid_2], nondom_check=false)

# R->W Aliasing
ts = []
Expand Down

0 comments on commit 1359bd0

Please sign in to comment.