tests: disable --format="%a" test
authorAssaf Gordon <[email protected]>
Thu, 22 Mar 2018 17:18:13 +0000 (11:18 -0600)
committerAssaf Gordon <[email protected]>
Thu, 22 Mar 2018 17:18:13 +0000 (11:18 -0600)
Valid output can differ (e.g. 0x8.000p-3 vs 0x1.000p+0).

* tests/datamash-output-format.pl: Disable 'a1' test.

tests/datamash-output-format.pl

index ca99bb0..5e90ae0 100755 (executable)
@@ -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