mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
240 B
Python
12 lines
240 B
Python
from swift.tools.test.qltest.utils import *
|
|
|
|
set_dummy_extractor("""
|
|
if [[ " $@ " =~ a.swift ]]; then exit 42; fi
|
|
if [[ " $@ " =~ b.swift ]]; then exit 1; fi
|
|
""")
|
|
run_qltest()
|
|
assert_extractor_executed_with(
|
|
"a.swift",
|
|
"b.swift",
|
|
)
|