search for: 132499741081_l

Displaying 4 results from an estimated 4 matches for "132499741081_l".

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
...ual_int64 102400_L (parse_resize ~prog 100_L "100K"); (* Fractions are always rounded down. *) - assert (parse_resize ~prog 100_L "1.1K" = 1126_L); - assert (parse_resize ~prog 100_L "100.1M" = 104962457_L); - assert (parse_resize ~prog 100_L "123.4G" = 132499741081_L); + assert_equal_int64 1126_L (parse_resize ~prog 100_L "1.1K"); + assert_equal_int64 104962457_L (parse_resize ~prog 100_L "100.1M"); + assert_equal_int64 132499741081_L (parse_resize ~prog 100_L "123.4G"); (* oldsize +/- a constant. *) - assert (parse_resize...
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