Add stdout/stderr tests

This commit is contained in:
Jeremy Soller 2016-08-14 18:22:50 -06:00
parent 4e270bb807
commit d97e2e4b4a
2 changed files with 24 additions and 2 deletions

View file

@ -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,