• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

NVIDIA / nvrc / 20321016685

17 Dec 2025 11:52PM UTC coverage: 34.332% (+0.5%) from 33.871%
20321016685

Pull #82

github

web-flow
Merge 3da25841a into 2f4720aec
Pull Request #82: Cleanup and refactor of daemon.rs

0 of 34 new or added lines in 3 files covered. (0.0%)

45 existing lines in 4 files now uncovered.

126 of 367 relevant lines covered (34.33%)

0.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/modprobe.rs
1
use crate::daemon::foreground;
2
use anyhow::Result;
3

NEW
4
pub fn nvidia() -> Result<()> {
×
NEW
5
    foreground("/sbin/modprobe", &["nvidia"])
×
6
}
7

NEW
8
pub fn nvidia_uvm() -> Result<()> {
×
NEW
9
    foreground("/sbin/modprobe", &["nvidia-uvm"])
×
10
}
11

NEW
12
pub fn nvidia_modeset() -> Result<()> {
×
NEW
13
    foreground("/sbin/modprobe", &["nvidia-modeset"])
×
14
}
15

NEW
16
pub fn reload_nvidia_modules() -> Result<()> {
×
17
    foreground(
18
        "/sbin/modprobe",
19
        &["-r", "nvidia_uvm", "nvidia_modeset", "nvidia"],
20
    )?;
NEW
21
    foreground("/sbin/modprobe", &["nvidia"])?;
×
NEW
22
    foreground("/sbin/modprobe", &["nvidia-uvm"])?;
×
NEW
23
    foreground("/sbin/modprobe", &["nvidia-modeset"])
×
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc