From 61d10d686b1926b9defa81036a72a0019cfa9355 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 27 Jan 2019 17:01:34 +0100 Subject: [PATCH] Update Readme for `Unit Testing` post --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 38717aa8..0d5ce9f1 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# Blog OS (VGA Text Mode) +# Blog OS (Unit Testing) -[![Build Status](https://travis-ci.org/phil-opp/blog_os.svg?branch=post-03)](https://travis-ci.org/phil-opp/blog_os/branches) +[![Build Status](https://travis-ci.org/phil-opp/blog_os.svg?branch=post-04)](https://travis-ci.org/phil-opp/blog_os/branches) -This repository contains the source code for the [VGA Text Mode][post] post of the [Writing an OS in Rust](https://os.phil-opp.com) series. +This repository contains the source code for the [Unit Testing][post] post of the [Writing an OS in Rust](https://os.phil-opp.com) series. -[post]: https://os.phil-opp.com/vga-text-mode/ +[post]: https://os.phil-opp.com/unit-testing/ **Check out the [master branch](https://github.com/phil-opp/blog_os) for more information.** @@ -46,5 +46,9 @@ dd if=target/x86_64-blog_os/debug/bootimage-blog_os.bin of=/dev/sdX && sync Where `sdX` is the device name of your USB stick. **Be careful** to choose the correct device name, because everything on that device is overwritten. +## Testing + +To run the unit tests on the host system, execute `cargo test`. + ## License The source code is dual-licensed under MIT or the Apache License (Version 2.0).