summaryrefslogtreecommitdiff
path: root/test/linter
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-02-20 00:01:06 +0900
committerGitHub <noreply@github.com>2022-02-20 00:01:06 +0900
commit5b1044e2ade71fee4a59f94faa108d99b4e61fb2 (patch)
tree31cbe18f0c4f96ad34cd4b880c335a6fd2fe0ebb /test/linter
parent47470eddc277e0a141e6e36a1e2a19045e051d1c (diff)
downloadale-5b1044e2ade71fee4a59f94faa108d99b4e61fb2.zip
Fix 4086 - use stable command options for rustc (#4087)
Diffstat (limited to 'test/linter')
-rw-r--r--test/linter/test_rustc.vader4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/linter/test_rustc.vader b/test/linter/test_rustc.vader
index 4bceb180..41e3c735 100644
--- a/test/linter/test_rustc.vader
+++ b/test/linter/test_rustc.vader
@@ -5,7 +5,7 @@ After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
- AssertLinter 'rustc', 'rustc --error-format=json -Z no-codegen -'
+ AssertLinter 'rustc', 'rustc --error-format=json --emit=mir -o /dev/null -'
Execute(The options should be configurable):
let b:ale_rust_rustc_options = '--foo'
@@ -15,7 +15,7 @@ Execute(The options should be configurable):
Execute(Some default paths should be included when the project is a Cargo project):
call ale#test#SetFilename('../test-files/cargo/test.rs')
- AssertLinter 'rustc', 'rustc --error-format=json -Z no-codegen'
+ AssertLinter 'rustc', 'rustc --error-format=json --emit=mir -o /dev/null'
\ . ' -L ' . ale#Escape(ale#path#GetAbsPath(g:dir, '../test-files/cargo/target/debug/deps'))
\ . ' -L ' . ale#Escape(ale#path#GetAbsPath(g:dir, '../test-files/cargo/target/release/deps'))
\ . ' -'