From f6f03125498a6368ad34f016afad7908e6078a0b Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 12 Mar 2023 14:46:22 +0000 Subject: [PATCH 1/3] Add tests documentation. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2fc9605..6640918 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # acid Tests to identify faults and incorrect behavior in the Redox microkernel. + +### Tests + +- `acid switch` - test to see the context switch time (500/500 for P/C acronyms). + +P - Parent context switch count (500 by deafult) +C - Child context switch count (500 by deafult) +T - Timestamp counter difference + +(timestamp counter is not reliable on every system). From 093fa361c9c33c502710d005d9690dce93d6190a Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 12 Mar 2023 14:48:46 +0000 Subject: [PATCH 2/3] Improve test description. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6640918..6db36eb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Tests to identify faults and incorrect behavior in the Redox microkernel. ### Tests -- `acid switch` - test to see the context switch time (500/500 for P/C acronyms). +- `acid switch` - test to see the context switch time in nanoseconds (ns). P - Parent context switch count (500 by deafult) C - Child context switch count (500 by deafult) From 14e831a2f97c1a9b9cd055a8ddad681e7e5d467e Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 12 Mar 2023 14:49:38 +0000 Subject: [PATCH 3/3] Improve formatting. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6db36eb..e564e2b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ Tests to identify faults and incorrect behavior in the Redox microkernel. - `acid switch` - test to see the context switch time in nanoseconds (ns). P - Parent context switch count (500 by deafult) + C - Child context switch count (500 by deafult) + T - Timestamp counter difference (timestamp counter is not reliable on every system).