about summary refs log tree commit diff stats
path: root/002test.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-02 01:41:55 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-02 02:01:41 -0800
commit9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e (patch)
tree5134d5ff1629cb5262e5feda38831456a2d1467d /002test.cc
parentdf8498fb8294cb07d02076cf3881617b5af07974 (diff)
downloadmu-9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e.tar.gz
5865
Give the bootstrap C++ program a less salient name.
Diffstat (limited to '002test.cc')
-rw-r--r--002test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/002test.cc b/002test.cc
index f25e331f..9424cc1a 100644
--- a/002test.cc
+++ b/002test.cc
@@ -1,6 +1,6 @@
 //: A simple test harness. To create new tests, define functions starting with
 //: 'test_'. To run all tests so defined, run:
-//:   $ ./mu test
+//:   $ ./bootstrap test
 //:
 //: Every layer should include tests, and can reach into previous layers.
 //: However, it seems like a good idea never to reach into tests from previous
@@ -72,7 +72,7 @@ if (Run_tests) {
 
 :(after "End Main")
 //: Raise other unrecognized sub-commands as errors.
-//: We couldn't do this until now because we want `./subx test` to always
+//: We couldn't do this until now because we want `./bootstrap test` to always
 //: succeed, no matter how many layers are included in the build.
 cerr << "nothing to do\n";
 return 1;