diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-03 23:28:46 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-03 23:28:46 -0800 |
commit | cd24db08f0e017bd5d2f6066e9e60371a86fa9ad (patch) | |
tree | 424d8b847fc3c9f1509a5218a99b4a379685f158 | |
parent | 3b81d74813aff953af393010adeb699f227182ed (diff) | |
download | mu-cd24db08f0e017bd5d2f6066e9e60371a86fa9ad.tar.gz |
7844
-rw-r--r-- | README.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/README.md b/README.md index ca2caf4e..8afba97b 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,14 @@ compatibility with the past. ([More details.](http://akkartik.name/akkartik-conv Tests are a key mechanism here for creating a computer that others can make their own. I want to encourage a style of active and interactive reading with Mu. If something doesn't make sense, try changing it and see what tests break. -Any breaking change should break some well-named test somewhere. Consequently, -any manual test should be easy to turn into a reproducible automated test. Mu -is a testbed for providing this guarantee. It exposes testable interfaces for -hardware using dependency injection so that tests can run on -- and make -assertions against -- fake hardware. It also is an experiment in [automated -white-box testing](http://akkartik.name/post/tracing-tests) which promises -robust tests for performance, concurrency, fault-tolerance, etc. +Any breaking change should break some well-named test somewhere. This requirement +implies that any manual test should be easy to turn into a reproducible +automated test. Mu is a testbed for providing this guarantee. It exposes +testable interfaces for hardware using dependency injection so that tests can +run on -- and make assertions against -- fake hardware. It also is an experiment +in [automated white-box testing](http://akkartik.name/post/tracing-tests) +which promises robust tests for performance, concurrency, fault-tolerance, +etc. Currently Mu requires a 32-bit x86 processor. |