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 15:11:10 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-02 15:11:10 -0800
commit300aa16720ddfa0b6e20aac020e42b701ffa6893 (patch)
tree03b430460b07e6b4b4a7fbf5f3d00be177757ce8 /002test.cc
parent8bbafb13974bbfd7223e8c69156493a123702c0d (diff)
downloadmu-300aa16720ddfa0b6e20aac020e42b701ffa6893.tar.gz
5873
Diffstat (limited to '002test.cc')
-rw-r--r--002test.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/002test.cc b/002test.cc
index 9424cc1a..4122a46e 100644
--- a/002test.cc
+++ b/002test.cc
@@ -97,8 +97,6 @@ const string Test_names[] = {
 };
 :(after "Test Runs")
 string maybe_single_test_to_run = argv[argc-1];
-if (!starts_with(maybe_single_test_to_run, "test_"))
-  maybe_single_test_to_run.insert(0, "test_");
 for (size_t i=0;  i < sizeof(Tests)/sizeof(Tests[0]);  ++i) {
   if (Test_names[i] == maybe_single_test_to_run) {
     run_test(i);