diff options
| author | Assaf Gordon <assafgordon@gmail.com> | 2018-03-22 11:18:13 -0600 |
|---|---|---|
| committer | Assaf Gordon <assafgordon@gmail.com> | 2018-03-22 11:18:13 -0600 |
| commit | f4871963974a96d6e69cb80b9c2fac7ff0c1d472 (patch) | |
| tree | 995069e8d3902693da00de31236638adffd1f433 | |
| parent | d446dba317aa067440d6312d955d523129949327 (diff) | |
| download | datamash-f4871963.tar.gz | |
tests: disable --format="%a" test
Valid output can differ (e.g. 0x8.000p-3 vs 0x1.000p+0).
* tests/datamash-output-format.pl: Disable 'a1' test.
| -rwxr-xr-x | tests/datamash-output-format.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/datamash-output-format.pl b/tests/datamash-output-format.pl index ca99bb0..5e90ae0 100755 --- a/tests/datamash-output-format.pl +++ b/tests/datamash-output-format.pl @@ -90,7 +90,9 @@ my @Tests = ['e2', '--format "%.3e" sum 1', {IN_PIPE=>$in1}, {OUT=>"1.000e+00\n"}], # Test Custom formats: %a - ['a1', '--format "%0.3a" sum 1', {IN_PIPE=>$in1}, {OUT=>"0x8.000p-3\n"}], + # Disable the test for now. Valid output can differ (e.g. 0x8.000p-3 and + # 0x1.000p0 ). + # ['a1', '--format "%0.3a" sum 1', {IN_PIPE=>$in1}, {OUT=>"0x8.000p-3\n"}], # Custom formats can use lots of memory |
