2017-01-05 08:57:48 +00:00
|
|
|
const assert = @import("std").debug.assert;
|
|
|
|
|
2017-03-16 20:02:35 +00:00
|
|
|
test "boolLiterals" {
|
2016-12-22 06:20:08 +00:00
|
|
|
assert(true);
|
|
|
|
assert(!false);
|
|
|
|
}
|
|
|
|
|
2017-03-16 20:02:35 +00:00
|
|
|
test "castBoolToInt" {
|
2016-12-22 06:20:08 +00:00
|
|
|
const t = true;
|
|
|
|
const f = false;
|
|
|
|
assert(i32(t) == i32(1));
|
|
|
|
assert(i32(f) == i32(0));
|
|
|
|
nonConstCastBoolToInt(t, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn nonConstCastBoolToInt(t: bool, f: bool) {
|
|
|
|
assert(i32(t) == i32(1));
|
|
|
|
assert(i32(f) == i32(0));
|
|
|
|
}
|
|
|
|
|
2017-03-16 20:02:35 +00:00
|
|
|
test "boolCmp" {
|
2016-12-22 06:42:30 +00:00
|
|
|
assert(testBoolCmp(true, false) == false);
|
|
|
|
}
|
|
|
|
fn testBoolCmp(a: bool, b: bool) -> bool {
|
|
|
|
a == b
|
|
|
|
}
|
2017-01-16 19:58:22 +00:00
|
|
|
|
2017-03-16 20:02:35 +00:00
|
|
|
test "shortCircuitAndOr" {
|
2017-01-16 19:58:22 +00:00
|
|
|
var a = true;
|
|
|
|
a &&= false;
|
|
|
|
assert(!a);
|
|
|
|
a &&= true;
|
|
|
|
assert(!a);
|
|
|
|
a ||= false;
|
|
|
|
assert(!a);
|
|
|
|
a ||= true;
|
|
|
|
assert(a);
|
|
|
|
}
|
2017-01-16 22:15:42 +00:00
|
|
|
|
|
|
|
const global_f = false;
|
|
|
|
const global_t = true;
|
|
|
|
const not_global_f = !global_f;
|
|
|
|
const not_global_t = !global_t;
|
2017-03-16 20:02:35 +00:00
|
|
|
test "compileTimeBoolnot" {
|
2017-01-16 22:15:42 +00:00
|
|
|
assert(not_global_f);
|
|
|
|
assert(!not_global_t);
|
|
|
|
}
|