Add stdout/stderr tests
This commit is contained in:
parent
4e270bb807
commit
d97e2e4b4a
2 changed files with 24 additions and 2 deletions
|
@ -12,7 +12,7 @@ pub mod fs;
|
|||
pub mod process;
|
||||
|
||||
/// System call list
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
||||
pub enum Call {
|
||||
/// Exit syscall
|
||||
Exit,
|
||||
|
@ -47,7 +47,7 @@ impl From<usize> for Call {
|
|||
}
|
||||
|
||||
/// The error number for an invalid value
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
||||
pub enum Error {
|
||||
/// Operation not permitted
|
||||
NotPermitted,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue