aboutsummaryrefslogtreecommitdiff
path: root/tests/process-term
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-07-06 16:06:23 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-07-06 16:06:23 +0200
commit4cebad3859f8cc4fe526a89ef2277d1db9ee9b7c (patch)
tree980ef15cfa6d2742f28afcbeaaf528d9f3637353 /tests/process-term
parent739c96fc8e0dd5e9889149ece229c5300f3a58fb (diff)
Clear errno before calling strto*() functions
Diffstat (limited to 'tests/process-term')
-rw-r--r--tests/process-term/driver.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/process-term/driver.cxx b/tests/process-term/driver.cxx
index 8487bb7..835272f 100644
--- a/tests/process-term/driver.cxx
+++ b/tests/process-term/driver.cxx
@@ -98,6 +98,7 @@ main (int argc, const char* argv[])
assert (!s.empty ());
char* e (nullptr);
+ errno = 0; // We must clear it according to POSIX.
uint64_t r (strtoull (s.c_str (), &e, 10)); // Can't throw.
assert (errno != ERANGE && e == s.c_str () + s.size ());