Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
01e6e98
fix some instances of broken cargo:warning instruction
scootermon Jan 14, 2024
e7af292
allow disabling cargo warnings for compilation
scootermon Jan 14, 2024
4a90bd8
comply with MSRV
scootermon Jan 14, 2024
40bb482
allow dead_code to make ci pass
scootermon Jan 14, 2024
7d51284
make print thread optional
scootermon Jan 15, 2024
cf795f2
simplify warnings using macros
scootermon Jan 15, 2024
17535c3
add a test case
scootermon Jan 15, 2024
67213e0
this line in the docstring is no longer true
scootermon Jan 15, 2024
afada42
apply review suggestions
scootermon Jan 16, 2024
a3b4614
write warnings to buffered stdout
scootermon Jan 16, 2024
c8c61a2
add proper output tests
scootermon Jan 16, 2024
3079bb0
reduce import diff and always print stdout in tests
scootermon Jan 16, 2024
00e980c
correct println
scootermon Jan 16, 2024
fc72499
add an output abstraction
scootermon Jan 23, 2024
fc2fb66
hopefully make the tests work on win32
scootermon Jan 23, 2024
690269a
msvc-compatible warnings
scootermon Jan 23, 2024
a629690
turns out we can't capture warnings for msvc...
scootermon Jan 23, 2024
19174cb
fix unconditional metadata output
scootermon Jan 23, 2024
4b5cdf4
skip warnings_on test for msvc
scootermon Jan 23, 2024
4ab4158
Update src/lib.rs
scootermon Jan 24, 2024
02f8895
Update src/lib.rs
scootermon Jan 24, 2024
7495e35
Update src/lib.rs
scootermon Jan 24, 2024
d475e93
Update src/lib.rs
scootermon Jan 24, 2024
00ae7e0
Merge branch 'main' into disable-warnings
scootermon Jan 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
correct println
  • Loading branch information
scootermon committed Jan 16, 2024
commit 00e980c0e4be74e0c91c569d85a36e0cacaf2ed3
4 changes: 2 additions & 2 deletions cc-test/tests/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn load_output(action: &str) -> (String, String) {
let action_dir = PathBuf::from(env!("OUT_DIR")).join(action);
let stdout = fs::read_to_string(action_dir.join("stdout")).unwrap();
let stderr = fs::read_to_string(action_dir.join("stderr")).unwrap();
println!("compile stdout: {:?}", action, stdout);
println!("compile stderr: {:?}", action, stderr);
println!("compile stdout: {:?}", stdout);
println!("compile stderr: {:?}", stderr);
(stdout, stderr)
}