From 44fd53a9ce07fc46e51fe3368d37eb645906f603 Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Thu, 24 Apr 2025 14:18:24 -0700 Subject: [PATCH] Remove deprecated --fp option from regression-wally --- bin/regression-wally | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/regression-wally b/bin/regression-wally index 88b88a000..5928beb99 100755 --- a/bin/regression-wally +++ b/bin/regression-wally @@ -392,7 +392,6 @@ def parse_args(): parser.add_argument("--buildroot", help="Include Buildroot Linux boot test (takes many hours, done along with --nightly)", action="store_true") parser.add_argument("--testfloat", help="Include Testfloat floating-point unit tests", action="store_true") parser.add_argument("--branch", help="Run branch predictor accuracy tests", action="store_true") - parser.add_argument("--fp", help="Include floating-point tests in coverage (slower runtime)", action="store_true") # Currently not used parser.add_argument("--breker", help="Run Breker tests", action="store_true") # Requires a license for the breker tool. See tests/breker/README.md for details parser.add_argument("--dryrun", help="Print commands invoked to console without running regression", action="store_true") return parser.parse_args()