diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-05-08 22:08:23 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-05-08 22:08:23 -0700 |
commit | 691f38f3d6e1ee4cd1f5d5c8c60c628543f11f55 (patch) | |
tree | 041ec9f6d69289a90864cb8c0aee98d245addbe4 /test/lua | |
parent | 9f2af30c066d4d821237532b1dea3c8f3e7fac7b (diff) | |
download | pandoc-691f38f3d6e1ee4cd1f5d5c8c60c628543f11f55.tar.gz |
test-pandoc-utils.lua - add diagnostic for windows test.
Diffstat (limited to 'test/lua')
-rw-r--r-- | test/lua/test-pandoc-utils.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lua/test-pandoc-utils.lua b/test/lua/test-pandoc-utils.lua index 4d736d2d5..89d273cef 100644 --- a/test/lua/test-pandoc-utils.lua +++ b/test/lua/test-pandoc-utils.lua @@ -39,6 +39,7 @@ end function test_pipe () if os_is_windows() then local pipe_result = pandoc.pipe('find', {'hi'}, 'hi') + print(pipe_result) return pipe_result == 'hi\n' or pipe_result == 'hi' else local pipe_result = pandoc.pipe('tr', {'a', 'b'}, 'abc') |