about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-02 15:11:10 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-02 15:11:10 -0800
commit300aa16720ddfa0b6e20aac020e42b701ffa6893 (patch)
tree03b430460b07e6b4b4a7fbf5f3d00be177757ce8 /001help.cc
parent8bbafb13974bbfd7223e8c69156493a123702c0d (diff)
downloadmu-300aa16720ddfa0b6e20aac020e42b701ffa6893.tar.gz
5873
Diffstat (limited to '001help.cc')
-rw-r--r--001help.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/001help.cc b/001help.cc
index daf1207c..ff622162 100644
--- a/001help.cc
+++ b/001help.cc
@@ -65,8 +65,6 @@ void init_help() {
     "  - online help: `bootstrap help`\n"
     "\n"
     "== Ways to invoke bootstrap\n"
-    "- Run tests:\n"
-    "    bootstrap test\n"
     "- See this message:\n"
     "    bootstrap --help\n"
     "- Convert a textual SubX program into a standard ELF binary that you can\n"
@@ -74,6 +72,11 @@ void init_help() {
     "    bootstrap translate input1.subx input2.subx ... -o <output ELF binary>\n"
     "- Run a SubX binary using SubX itself (for better error messages):\n"
     "    bootstrap run <ELF binary>\n"
+    "- Run all bootstrap's unit tests:\n"
+    "    bootstrap test\n"
+    "- Run a single unit test:\n"
+    "    bootstrap test <test name>\n"
+    "     e.g. bootstrap test test_copy_imm32_to_EAX\n"
     "\n"
     "== Debugging aids\n"
     "- Add '--trace' to any of these commands to save a trace to disk at the end.\n"