aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_bool_type.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_bool_type.sh')
-rw-r--r--tests/test_bool_type.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/test_bool_type.sh b/tests/test_bool_type.sh
deleted file mode 100644
index d18fd30..0000000
--- a/tests/test_bool_type.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-test_exit_code 0 <<'EOF'
-#include "../../helpers.h"
-
-int main() {
- bool b1 = true, b0 = false;
- ASSERT_EQ(1, b1);
- ASSERT_EQ(0, b0);
- ASSERT_EQ(1, sizeof(b1));
- ASSERT_EQ(1, sizeof(b0));
- ASSERT_EQ(1, sizeof(bool));
-}
-EOF