diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 1ab0fe2..1211167 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -51,7 +51,7 @@ jobs:
run: |
java --version
javac --version
- ./src/jacotest -c -x -t 60 -j openjdk
+ ./src/jacotest -c -x -M -t 60 -j openjdk
ls -l ./reports
- name: Run options
@@ -59,5 +59,4 @@ jobs:
./src/jacotest -r 1 -j openjdk
./src/jacotest -r 2 -j openjdk
./src/jacotest -z -v -j openjdk
- ./src/jacotest -M -j openjdk
diff --git a/HISTORY.md b/HISTORY.md
index 5fe0cfe..536aaa5 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -5,6 +5,7 @@ This file is a version history of jacotest amendments. Entries appear in versio
| :------------: | :---: | :--- |
|
|
|
|
| 2024-07-15 | 3.4.0 | New feature: delete the most recent pass/fail record for each case using option -z. |
+| | | Fix issue #23. |
| 2024-07-10 | 3.3.6 | Fixed stringer-1 whitespace issue. |
| 2024-07-05 | 3.3.5 | Removed utilities directory as they are no longer in use. |
| | | Ditto for directories py and misc.java. |
diff --git a/src/main.go b/src/main.go
index 2bc0903..5445593 100644
--- a/src/main.go
+++ b/src/main.go
@@ -149,7 +149,6 @@ func main() {
LogError(fmt.Sprintf("Unrecognizable JVM name: %s", jvmName))
showHelp()
}
- flagExecute = true
case "-t": // Deadline in seconds requested
ii += 1