ipopt-hs-0.3.0.0: examples/AllTests.hs
import Test1
import Test2
import Test3
import Test4
import Test5
import System.Environment
-- probably should get autogenerated if lots of examples get generated...
main = do
as <- getArgs
case as of
[] -> error "run like: ipopt-hs_Tests 1\nipopt-hs_Tests all"
["1"] -> main1
["2"] -> main2
["3"] -> main3
["4"] -> main4
["5"] -> main5
["all"] -> do
main1
main2
main3
main4
main5