summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-03-22 14:36:12 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-03-22 14:36:12 +0100
commit286b320fb0d473bbaaeef552272faf229bb804a3 (patch)
tree73d3761cc3bb32d19a31177870a9ce457009b860
parentcf306f34e5e23a1416b598766ca73d63d7367283 (diff)
Added to issue 3516 command test to debug test failure on appveyor.
-rw-r--r--test/command/3516.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/command/3516.md b/test/command/3516.md
index d547ddbb1..982043874 100644
--- a/test/command/3516.md
+++ b/test/command/3516.md
@@ -13,3 +13,39 @@ Correctly handle empty row:
| | |
+---+---+
```
+
+Temporarily added these to figure out what is happening
+on Windows builds.
+```
+% pandoc -f markdown -t native
++---+---+
+| 1 | 2 |
++---+---+
+| | |
++---+---+
+^D
+[Table [] [AlignDefault,AlignDefault] [5.555555555555555e-2,5.555555555555555e-2]
+ [[]
+ ,[]]
+ [[[Para [Str "1"]]
+ ,[Para [Str "2"]]]
+ ,[[]
+ ,[]]]]
+```
+
+```
+% pandoc -f native -t rst
+[Table [] [AlignDefault,AlignDefault] [5.555555555555555e-2,5.555555555555555e-2]
+ [[]
+ ,[]]
+ [[[Para [Str "1"]]
+ ,[Para [Str "2"]]]
+ ,[[]
+ ,[]]]]
+^D
++---+---+
+| 1 | 2 |
++---+---+
+| | |
++---+---+
+```