Skip to content

Commit

Permalink
Decrease concurrency of matrix/matrix_g/forktest2 && Remove forktest2…
Browse files Browse the repository at this point in the history
… from usertests.
  • Loading branch information
wyfcyx committed Oct 26, 2020
1 parent bca0434 commit 598c0b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion user/rust/src/bin/r_forktest2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extern crate user_lib;

use user_lib::{fork, wait, get_time, getpid, exit};

static NUM: usize = 15;
static NUM: usize = 13;

#[no_mangle]
pub fn main() -> i32 {
Expand Down
2 changes: 1 addition & 1 deletion user/rust/src/bin/r_matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extern crate user_lib;

use user_lib::{fork, wait, sys_yield, exit, getpid, get_time};

static NUM: usize = 15;
static NUM: usize = 13;
const N: usize = 10;
static P: i32 = 10007;
type Arr = [[i32; N]; N];
Expand Down
2 changes: 1 addition & 1 deletion user/rust/src/bin/r_matrix_g.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extern crate user_lib;

use user_lib::{fork, wait, sys_yield, exit, getpid, get_time};

static NUM: usize = 15;
static NUM: usize = 13;
const N: usize = 10;
static P: i32 = 10007;
type Arr = [[i32; N]; N];
Expand Down
2 changes: 1 addition & 1 deletion user/rust/src/bin/r_usertests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extern crate user_lib;
static tests: &[&str] = &[
"r_fantastic_text\0",
"r_forktest\0",
"r_forktest2\0",
//"r_forktest2\0",
"r_matrix\0",
"r_matrix_g\0",
"r_hello_world\0",
Expand Down

0 comments on commit 598c0b2

Please sign in to comment.