From fdd361e67c451b4afac8c531debd1a1c572d1623 Mon Sep 17 00:00:00 2001 From: Christian Holme Date: Thu, 11 Apr 2024 14:03:48 +0200 Subject: [PATCH] tests/phantom.mk: remove argument error phantom -b does not take an option. But because our option parsing was broken, this did not lead to an error up to now... --- tests/phantom.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phantom.mk b/tests/phantom.mk index f6774312a..2f0e88564 100644 --- a/tests/phantom.mk +++ b/tests/phantom.mk @@ -122,7 +122,7 @@ tests/test-phantom-NIST: fft nrmse phantom tests/test-phantom-NIST-basis: nrmse phantom fmac set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) ;\ $(TOOLDIR)/phantom --NIST -k k0.ra ;\ - $(TOOLDIR)/phantom --NIST -b 11 -k k1.ra ;\ + $(TOOLDIR)/phantom --NIST -b -k k1.ra ;\ $(TOOLDIR)/fmac -s 64 k1.ra k2.ra ;\ $(TOOLDIR)/nrmse -t 0.000001 k0.ra k2.ra ;\ rm *.ra ; cd .. ; rmdir $(TESTS_TMP) @@ -256,7 +256,7 @@ tests/test-phantom-SONAR: fft nrmse phantom tests/test-phantom-SONAR-basis: nrmse phantom fmac set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) ;\ $(TOOLDIR)/phantom --SONAR -k k0.ra ;\ - $(TOOLDIR)/phantom --SONAR -b 11 -k k1.ra ;\ + $(TOOLDIR)/phantom --SONAR -b -k k1.ra ;\ $(TOOLDIR)/fmac -s 64 k1.ra k2.ra ;\ $(TOOLDIR)/nrmse -t 0.000001 k0.ra k2.ra ;\ rm *.ra ; cd .. ; rmdir $(TESTS_TMP)