adding parsing of potential configuration to quickcheck command
authorbulwahn
Wed, 30 Nov 2011 09:21:04 +0100
changeset 4655306acd5cbb53b
parent 46552 ac1651b08da2
child 46554 805a2acf47fd
adding parsing of potential configuration to quickcheck command
src/Tools/quickcheck.ML
     1.1 --- a/src/Tools/quickcheck.ML	Wed Nov 30 09:21:02 2011 +0100
     1.2 +++ b/src/Tools/quickcheck.ML	Wed Nov 30 09:21:04 2011 +0100
     1.3 @@ -410,6 +410,7 @@
     1.4    | parse_test_param ("no_assms", [arg]) = apsnd (Config.put_generic no_assms (read_bool arg))
     1.5    | parse_test_param ("expect", [arg]) = apsnd (map_test_params ((apsnd o K) (read_expectation arg)))
     1.6    | parse_test_param ("report", [arg]) = apsnd (Config.put_generic report (read_bool arg))
     1.7 +  | parse_test_param ("potential", [arg]) = apsnd (Config.put_generic potential (read_bool arg))
     1.8    | parse_test_param ("quiet", [arg]) = apsnd (Config.put_generic quiet (read_bool arg))
     1.9    | parse_test_param ("timeout", [arg]) = apsnd (Config.put_generic timeout (read_real arg))
    1.10    | parse_test_param ("finite_types", [arg]) = apsnd (Config.put_generic finite_types (read_bool arg))