From 77c34a1b308ac98cc7307cef6c8fde22616621db Mon Sep 17 00:00:00 2001 From: Blake Hurlburt Date: Mon, 27 Mar 2017 02:13:41 -0400 Subject: [PATCH 1/2] Fix typos in test descriptions --- test161/tests/vm/palin.t | 4 ++-- test161/tests/vm/quinthuge.t | 2 +- test161/tests/vm/quintmat.t | 2 +- test161/tests/vm/quintsort.t | 2 +- test161/tests/vm/swap/quinthuge.t | 2 +- test161/tests/vm/swap/quintmat.t | 2 +- test161/tests/vm/swap/quintsort.t | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test161/tests/vm/palin.t b/test161/tests/vm/palin.t index 551ccdf..6a2d7ab 100644 --- a/test161/tests/vm/palin.t +++ b/test161/tests/vm/palin.t @@ -1,8 +1,8 @@ --- name: "Taco cat" description: > - Test page faults by ensuring a known palindrone stored in static - memory is actually a palindrone. + Test page faults by ensuring a known palindrome stored in static + memory is actually a palindrome. tags: [vm] depends: [not-dumbvm-vm] --- diff --git a/test161/tests/vm/quinthuge.t b/test161/tests/vm/quinthuge.t index db1cbb2..3dc7d28 100644 --- a/test161/tests/vm/quinthuge.t +++ b/test161/tests/vm/quinthuge.t @@ -1,7 +1,7 @@ --- name: "Quint Huge" description: > - Run five concurent copies of huge. + Run five concurrent copies of huge. tags: [vm] depends: [not-dumbvm-vm] sys161: diff --git a/test161/tests/vm/quintmat.t b/test161/tests/vm/quintmat.t index a4219f1..ded5bd1 100644 --- a/test161/tests/vm/quintmat.t +++ b/test161/tests/vm/quintmat.t @@ -1,7 +1,7 @@ --- name: "Quint Matrix Mult" description: > - Run five concurent copies of matmult. + Run five concurrent copies of matmult. tags: [vm] depends: [not-dumbvm-vm] sys161: diff --git a/test161/tests/vm/quintsort.t b/test161/tests/vm/quintsort.t index c650821..4885961 100644 --- a/test161/tests/vm/quintsort.t +++ b/test161/tests/vm/quintsort.t @@ -1,7 +1,7 @@ --- name: "Quint Sort" description: > - Run five concurent copies of sort. + Run five concurrent copies of sort. tags: [vm] depends: [not-dumbvm-vm] sys161: diff --git a/test161/tests/vm/swap/quinthuge.t b/test161/tests/vm/swap/quinthuge.t index 0ac6282..d6b53cf 100644 --- a/test161/tests/vm/swap/quinthuge.t +++ b/test161/tests/vm/swap/quinthuge.t @@ -1,7 +1,7 @@ --- name: "Quint Huge (Swap)" description: > - Run five concurent copies of huge. + Run five concurrent copies of huge. tags: [swap] depends: [swap-basic, /vm/quinthuge.t, shell] sys161: diff --git a/test161/tests/vm/swap/quintmat.t b/test161/tests/vm/swap/quintmat.t index d18328c..d77e06b 100644 --- a/test161/tests/vm/swap/quintmat.t +++ b/test161/tests/vm/swap/quintmat.t @@ -1,7 +1,7 @@ --- name: "Quint Matrix Mult (Swap)" description: > - Run five concurent copies of matmult. + Run five concurrent copies of matmult. tags: [swap] depends: [swap-basic, /vm/quintmat.t, shell] sys161: diff --git a/test161/tests/vm/swap/quintsort.t b/test161/tests/vm/swap/quintsort.t index 9461ace..6e5ac89 100644 --- a/test161/tests/vm/swap/quintsort.t +++ b/test161/tests/vm/swap/quintsort.t @@ -1,7 +1,7 @@ --- name: "Quint Sort (Swap)" description: > - Run five concurent copies of sort. + Run five concurrent copies of sort. tags: [swap] depends: [swap-basic, /vm/quintsort.t, shell] sys161: From e753098bad866de7da4ea812a7460917bc0d47b1 Mon Sep 17 00:00:00 2001 From: Blake Hurlburt Date: Mon, 27 Mar 2017 02:16:32 -0400 Subject: [PATCH 2/2] Make zero.t depend on sbrktest.t --- test161/tests/vm/zero.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test161/tests/vm/zero.t b/test161/tests/vm/zero.t index 8819893..16532f4 100644 --- a/test161/tests/vm/zero.t +++ b/test161/tests/vm/zero.t @@ -3,7 +3,7 @@ name: "Zero Test" description: > Tests that static memory regions are properly initialized. tags: [vm] -depends: [not-dumbvm-vm] +depends: [not-dumbvm-vm, sbrktest.t] sys161: ram: 4M ---