Removed the testsuite build flag

Test suite is always included.

Building with this flag disabled has actually been broken for some time,
since Command.TestRemote uses tasty. Fewer build flags are better, so good
time to drop it.

This commit was sponsored by Thomas Hochstein on Patreon.
This commit is contained in:
Joey Hess 2017-12-20 12:25:03 -04:00
parent f5f561bd49
commit 79857d7e9f
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
9 changed files with 14 additions and 43 deletions

View file

@ -116,10 +116,8 @@ import qualified Command.WebApp
#endif
#endif
import qualified Command.Test
#ifdef WITH_TESTSUITE
import qualified Command.FuzzTest
import qualified Command.TestRemote
#endif
#ifdef WITH_BENCHMARK
import qualified Command.Benchmark
#endif
@ -226,10 +224,8 @@ cmds testoptparser testrunner =
#endif
#endif
, Command.Test.cmd testoptparser testrunner
#ifdef WITH_TESTSUITE
, Command.FuzzTest.cmd
, Command.TestRemote.cmd
#endif
#ifdef WITH_BENCHMARK
, Command.Benchmark.cmd
#endif