[latex3-commits] [l3svn] branch master updated: Re-add fp convert tests

noreply at latex-project.org noreply at latex-project.org
Thu Mar 24 13:21:56 CET 2016


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

The following commit(s) were added to refs/heads/master by this push:
       new  977ac71   Re-add fp convert tests
977ac71 is described below

commit 977ac71ee40b1e7588e8bb8b827550287fa2f763
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Thu Mar 24 12:21:25 2016 +0000

    Re-add fp convert tests
    
    This at least covers 'do they seem to work'.
---
 l3kernel/testfiles/m3fp-convert003.lvt |  108 ++++++
 l3kernel/testfiles/m3fp-convert003.tlg |  601 ++++++++++++++++++++++++++++++++
 2 files changed, 709 insertions(+)

diff --git a/l3kernel/testfiles/m3fp-convert003.lvt b/l3kernel/testfiles/m3fp-convert003.lvt
new file mode 100644
index 0000000..b7f78fd
--- /dev/null
+++ b/l3kernel/testfiles/m3fp-convert003.lvt
@@ -0,0 +1,108 @@
+%
+% Copyright (C) 2012,2016 LaTeX3 Project
+%
+
+\documentclass{minimal}
+\input{regression-test}
+
+\RequirePackage[check-declarations,log-functions]{expl3}
+
+\begin{document}
+\START
+\AUTHOR{Bruno Le Floch, Joseph Wright}
+\ExplSyntaxOn
+
+\OMIT
+\cs_set_protected:Npn \test:nn #1#2
+  {
+    \fp_set:Nn \l_tmpa_fp {#2}
+    \tl_set:Nx \l_tmpa_tl { \use:c { fp_ #1 :N } \l_tmpa_fp }
+    \tl_show:N \l_tmpa_tl
+    \tl_set:Nx \l_tmpa_tl { \use:c { fp_ #1 :n } {#2} }
+    \tl_show:N \l_tmpa_tl
+  }
+\TIMO
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\TEST { fp_to_scientific }
+  {
+    \test:nn { to_scientific } { 0 }
+    \test:nn { to_scientific } { 0.01 }
+    \test:nn { to_scientific } { 1.234e6 }
+    \test:nn { to_scientific } { 1.234e17 }
+    \test:nn { to_scientific } { -1.234500e-6 }
+    \test:nn { to_scientific } { -inf }
+    \test:nn { to_scientific } { inf }
+    \test:nn { to_scientific } { nan }
+  }
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\TEST { fp_to_decimal }
+  {
+    \test:nn { to_decimal } { 0 }
+    \test:nn { to_decimal } { 0.01 }
+    \test:nn { to_decimal } { 1.234e6 }
+    \test:nn { to_decimal } { 1.234e17 }
+    \test:nn { to_decimal } { -1.234500e-6 }
+    \test:nn { to_decimal } { -inf }
+    \test:nn { to_decimal } { inf }
+    \test:nn { to_decimal } { nan }
+  }
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\TEST { fp_to_tl }
+  {
+    \test:nn { to_tl } { 0 }
+    \test:nn { to_tl } { 0.01 }
+    \test:nn { to_tl } { 1.234e6 }
+    \test:nn { to_tl } { 1.234e17 }
+    \test:nn { to_tl } { -1.234500e-6 }
+    \test:nn { to_tl } { -inf }
+    \test:nn { to_tl } { inf }
+    \test:nn { to_tl } { nan }
+  }
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\TEST { fp_to_dim }
+  {
+    \test:nn { to_dim } { 0 }
+    \test:nn { to_dim } { 0.01 }
+    \test:nn { to_dim } { 1.234e6 }
+    \test:nn { to_dim } { 1.234e17 }
+    \test:nn { to_dim } { -1.234500e-6 }
+    \test:nn { to_dim } { -inf }
+    \test:nn { to_dim } { inf }
+    \test:nn { to_dim } { nan }
+  }
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\TEST { fp_to_int }
+  {
+    \test:nn { to_int } { 0 }
+    \test:nn { to_int } { 0.01 }
+    \test:nn { to_int } { 1.234e6 }
+    \test:nn { to_int } { 1.234e17 }
+    \test:nn { to_int } { -1.234500e-6 }
+    \test:nn { to_int } { -inf }
+    \test:nn { to_int } { inf }
+    \test:nn { to_int } { nan }
+  }
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\TEST { fp_use~and~fp_eval }
+  {
+    \cs_set_eq:NN \fp_use:n \fp_eval:n
+    \test:nn { use } { 0 }
+    \test:nn { use } { 0.01 }
+    \test:nn { use } { 1.234e6 }
+    \test:nn { use } { 1.234e17 }
+    \test:nn { use } { -1.234500e-6 }
+    \test:nn { use } { -inf }
+    \test:nn { use } { inf }
+    \test:nn { use } { nan }
+  }
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\END
diff --git a/l3kernel/testfiles/m3fp-convert003.tlg b/l3kernel/testfiles/m3fp-convert003.tlg
new file mode 100644
index 0000000..b9d72b1
--- /dev/null
+++ b/l3kernel/testfiles/m3fp-convert003.tlg
@@ -0,0 +1,601 @@
+This is a generated file for the LaTeX (2e + expl3) validation system.
+Don't change this file in any respect.
+Author: Bruno Le Floch, Joseph Wright
+============================================================
+TEST 1: fp_to_scientific
+============================================================
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1e-2.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1e-2.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1.234e6.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1.234e6.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1.234e17.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1.234e17.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-1.2345e-6.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-1.2345e-6.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_scientific(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=-1e10000.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_scientific(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=-1e10000.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_scientific(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=1e10000.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_scientific(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=1e10000.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_scientific(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_scientific(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+============================================================
+============================================================
+TEST 2: fp_to_decimal
+============================================================
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.0000012345.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.0000012345.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+============================================================
+============================================================
+TEST 3: fp_to_tl
+============================================================
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1.234e17.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1.234e17.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-1.2345e-6.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-1.2345e-6.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-inf.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-inf.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=inf.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=inf.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=nan.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=nan.
+<recently read> }
+l. ...  }
+============================================================
+============================================================
+TEST 4: fp_to_dim
+============================================================
+> \l_tmpa_tl=0pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.0000012345pt.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.0000012345pt.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0pt.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0pt.
+<recently read> }
+l. ...  }
+============================================================
+============================================================
+TEST 5: fp_to_int
+============================================================
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+============================================================
+============================================================
+TEST 6: fp_use and fp_eval
+============================================================
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=0.01.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=1234000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=123400000000000000.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.0000012345.
+<recently read> }
+l. ...  }
+> \l_tmpa_tl=-0.0000012345.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(-inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(inf)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> 
+\l_tmpa_tl=1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 [...]
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+! Undefined control sequence.
+<argument> \LaTeX3 error: 
+                           Invalid operation fp_to_decimal(nan)
+l. ...  }
+The control sequence at the end of the top line
+of your error message was never \def'ed. If you have
+misspelled it (e.g., `\hobx'), type `I' and the correct
+spelling (e.g., `I\hbox'). Otherwise just continue,
+and I'll forget about whatever was undefined.
+> \l_tmpa_tl=0.
+<recently read> }
+l. ...  }
+============================================================

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list