We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e8b6dc commit 4485193Copy full SHA for 4485193
rust/ql/integration-tests/qltest/test.py
@@ -1,3 +1,4 @@
1
+import runs_on
2
# these tests are meant to exercise QL test running on multiple platforms
3
# therefore they don't rely on integration test built-in QL test running
4
# (which skips `qltest.{sh,cmd}`)
@@ -11,4 +12,6 @@ def test_main(codeql, rust):
11
12
def test_failing_cargo_check(codeql, rust):
13
out = codeql.test.run("failing_cargo_check", threads=1, show_extractor_output=True,
14
_assert_failure=True, _capture="stderr")
- assert "requested cargo check failed" in out
15
+ # TODO: QL test output redirection is currently broken on windows, leaving it up for follow-up work
16
+ if not runs_on.windows:
17
+ assert "requested cargo check failed" in out
0 commit comments