search for: 100000_l

Displaying 6 results from an estimated 6 matches for "100000_l".

Did you mean: 1000000l
2015 Jan 22
3
[PATCH 1/2] configure: look for the oUnit OCaml module
It will be used for the OCaml unit tests. --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index e0fb481..e360bbb 100644 --- a/configure.ac +++ b/configure.ac @@ -1120,6 +1120,7 @@ AS_IF([test "x$OCAMLC" != "xno"],[ ]) OCAML_PKG_gettext=no +OCAML_PKG_oUnit=no AS_IF([test "x$OCAMLC" != "xno"],[ #
2015 Jan 22
0
[PATCH 2/2] mllib: convert common_utils_tests to oUnit
...quot;+1.1M"); + assert_equal_int64 107374182_L (parse_resize ~prog 132499741081_L "-123.3G"); (* oldsize +/- a percentage. *) - assert (parse_resize ~prog 100_L "+1%" = 101_L); - assert (parse_resize ~prog 100_L "-1%" = 99_L); - assert (parse_resize ~prog 100000_L "+1%" = 101000_L); - assert (parse_resize ~prog 100000_L "-1%" = 99000_L); - assert (parse_resize ~prog 100000_L "+50%" = 150000_L); - assert (parse_resize ~prog 100000_L "-50%" = 50000_L); - assert (parse_resize ~prog 100000_L "+100%" = 200000_...
2015 May 15
5
[PATCH 0/4] Only tell people to use -v -x when reporting bugs if they're not using those flags.
.. and a lot of refactoring. https://bugzilla.redhat.com/show_bug.cgi?id=1167623 Rich.
2015 May 15
6
[PATCH v2 0/4] Only tell people to use -v -x when reporting bugs if they're not using those flags.
https://bugzilla.redhat.com/show_bug.cgi?id=1167623
2015 May 11
3
[PATCH 1/2] mllib: Require OUnit2 for tests.
...e ctx = (* For absolute sizes, oldsize is ignored. *) assert_equal_int64 100_L (parse_resize ~prog 100_L "100b"); assert_equal_int64 100_L (parse_resize ~prog 1000_L "100b"); @@ -74,7 +74,7 @@ let test_parse_resize () = assert_equal_int64 101100_L (parse_resize ~prog 100000_L "+1.12%") (* Test Common_utils.human_size. *) -let test_human_size () = +let test_human_size ctx = assert_equal_string "100" (human_size 100_L); assert_equal_string "-100" (human_size (-100_L)); assert_equal_string "1.0K" (human_size 1024_L); @@ -...
2017 Sep 26
5
[PATCH 0/5] Miscellaneous refactoring of common/utils, create common/mltools
Miscellaneous refactoring, but the main one is to rename mllib/ as common/mltools/ Rich.