diff options
author | Matthias Loy <matthias.loy@hbm.com> | 2014-11-03 20:23:35 +0100 |
---|---|---|
committer | Matthias Loy <matthias.loy@hbm.com> | 2014-11-03 20:23:35 +0100 |
commit | 1912894f5331a29de37fb13469c6eea16e51d4e4 (patch) | |
tree | 8966cd9b2824407bd90ea08b456438cbdb67eaa5 /tests/test_document.cpp | |
parent | 837ced350c5123c21c32154f1f2dc483238f7629 (diff) | |
parent | 3950ee0433aaed3c35eaee7548bae5b00ee22a80 (diff) |
:Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r-- | tests/test_document.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp index 2cc39a6..2774a07 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -301,6 +301,10 @@ TEST(document_load_file_error) CHECK(doc.load_file("filedoesnotexist").status == status_file_not_found); +#ifndef _WIN32 + CHECK(doc.load_file("/dev/tty").status == status_io_error); +#endif + test_runner::_memory_fail_threshold = 1; CHECK(doc.load_file("tests/data/small.xml").status == status_out_of_memory); } |