Test result that was missing is now found

This commit is contained in:
Owen Mansel-Chan
2023-11-10 14:58:52 +00:00
parent 3594dba83c
commit 521066578b
2 changed files with 2 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ func simpleflow() {
ch := make(chan string)
ch <- a.Src1().(string)
taint16 := test.StepArgCollectionContentRes(ch)
b.Sink1(taint16) // $ MISSING: hasTaintFlow="taint16" // currently fails due to lack of post-update nodes after send statements
b.Sink1(taint16) // $ hasTaintFlow="taint16"
c1 := test.C{""}
c1.Set(a.Src1().(string))

View File

@@ -158,7 +158,7 @@ func simpleflow() {
ch := make(chan string)
ch <- a.Src1().(string)
taint16 := test.StepArgCollectionContentRes(ch)
b.Sink1(taint16) // $ MISSING: hasValueFlow="taint16" // currently fails due to lack of post-update nodes after send statements
b.Sink1(taint16) // $ hasValueFlow="taint16"
c1 := test.C{""}
c1.Set(a.Src1().(string))