4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,6 @@ run-make/use-suggestions-rust-2018/Makefile
321
321
run-make/used-cdylib-macos/Makefile
322
322
run-make/used/Makefile
323
323
run-make/valid-print-requests/Makefile
324
- run-make/version/Makefile
325
324
run-make/volatile-intrinsics/Makefile
326
325
run-make/wasm-exceptions-nostd/Makefile
327
326
run-make/wasm-override-linker/Makefile
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const ENTRY_LIMIT: usize = 900;
18
18
// FIXME: The following limits should be reduced eventually.
19
19
20
20
const ISSUES_ENTRY_LIMIT : usize = 1733 ;
21
- const ROOT_ENTRY_LIMIT : usize = 860 ;
21
+ const ROOT_ENTRY_LIMIT : usize = 861 ;
22
22
23
23
const EXPECTED_TEST_FILE_EXTENSIONS : & [ & str ] = & [
24
24
"rs" , // test source files
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ // Check that rustc accepts various version info flags.
2
+ //@ dont-check-compiler-stdout
3
+ //@ revisions: version verbose-version long-verbose-version
4
+ //@ check-pass
5
+ //@[version] compile-flags: -V
6
+ //@[verbose-version] compile-flags: -vV
7
+ //@[long-verbose-verison] compile-flags: --version --verbose
8
+
9
+ fn main ( ) { }
0 commit comments