aboutsummaryrefslogtreecommitdiff
path: root/build2/test
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-11-03 15:58:11 +0300
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:37 +0200
commit57c7577fa91ffc024e5c696a91abe19f5547a787 (patch)
tree410a09a2d1ebf6da5e770b644c7a1806f2d1aef9 /build2/test
parentd933699b4dd106c227f8d07a2471d5f39f1c82af (diff)
Fix Clang and VC warnings
Diffstat (limited to 'build2/test')
-rw-r--r--build2/test/script/runner.cxx6
-rw-r--r--build2/test/script/script.cxx2
2 files changed, 6 insertions, 2 deletions
diff --git a/build2/test/script/runner.cxx b/build2/test/script/runner.cxx
index 29f7a37..b071cf3 100644
--- a/build2/test/script/runner.cxx
+++ b/build2/test/script/runner.cxx
@@ -526,7 +526,11 @@ namespace build2
// stderr (if cached), print the proper diagnostics and fail.
//
optional<process::status_type> status (move (pr.status));
- bool valid_status (status && *status >= 0 && *status < 256);
+
+ // Comparison *status >= 0 causes "always true" warning on Windows
+ // where process::status_type is defined as uint32_t.
+ //
+ bool valid_status (status && *status + 1 > 0 && *status < 256);
bool eq (c.exit.comparison == exit_comparison::eq);
bool correct_status (valid_status &&
diff --git a/build2/test/script/script.cxx b/build2/test/script/script.cxx
index e453d44..2679cb7 100644
--- a/build2/test/script/script.cxx
+++ b/build2/test/script/script.cxx
@@ -433,7 +433,7 @@ namespace build2
if (const value* v = p->vars.find (var))
return lookup (v, &p->vars);
}
- while (p->parent != nullptr ? (p = p->parent) : nullptr);
+ while ((p->parent != nullptr ? (p = p->parent) : nullptr) != nullptr);
// Switch to the corresponding buildfile variable. Note that we don't
// want to insert a new variable into the pool (we might be running